Fix typo in sed line for pacman.conf

This commit is contained in:
natemaia 2017-10-28 22:29:59 -07:00
parent 7d4cae4856
commit 4ab655d6b4

View File

@ -42,7 +42,7 @@ setupKeyring() {
if ! grep "archlabs_repo" /etc/pacman.conf; then
echo "${REPO}" | sudo tee -a /etc/pacman.conf
else ## if entries exist just remove them
sudo sed -i '/archlabs_repo/d'
sudo sed -i '/archlabs_repo/d' /etc/pacman.conf
echo "${REPO}" | sudo tee -a /etc/pacman.conf
fi