fix syntax error

This commit is contained in:
natemaia 2017-10-28 21:31:54 -07:00
parent 7a01835bc4
commit f798d676a1

View File

@ -32,7 +32,7 @@ setupKeyring() {
sudo pacman-key --populate archlinux
for key in ${KEYS[@]}; do
if ! sudo pacman-key --list-keys | grep $key
if ! sudo pacman-key --list-keys | grep $key; then
gpg --receive-keys $key
sudo pacman-key -r $key
fi