Files
dotfiles/.config/yadm/bootstrap.d/gpg.sh
2022-09-27 01:54:54 +00:00

8 lines
141 B
Bash
Executable File

if ! command -v gpg &> /dev/null; then
echo 'Installing gpg'
sudo apt update
sudo apt install gpg -y
fi
echo 'gpg is installed'