Skip to content

Commit

Permalink
Merge pull request #51 from regolith-linux/fix-apt-key
Browse files Browse the repository at this point in the history
fix: gpg dearmor the regolith key before saving to file
  • Loading branch information
khos2ow authored Dec 31, 2024
2 parents a36840b + c0ff56c commit 3c1e8d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/ext-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ archive_setup_scripts() {
fi

echo "Adding repo to apt: $repo_line"
wget -qO - http://archive.regolith-desktop.com/regolith.key | sudo tee /etc/apt/keyrings/regolith.gpg
wget -qO - http://archive.regolith-desktop.com/regolith.key | gpg --dearmor | sudo tee /etc/apt/keyrings/regolith.gpg >/dev/null
echo "deb [arch=$ARCH signed-by=/etc/apt/keyrings/regolith.gpg] $repo_line" | sudo tee /etc/apt/sources.list.d/regolith.list

sudo apt update
Expand Down

0 comments on commit 3c1e8d2

Please sign in to comment.