packer defaults now to sudo

This commit is contained in:
Luke 2017-10-09 11:50:24 -07:00
parent 2067de9143
commit 5ee433e0fc

View File

@ -23,7 +23,7 @@ else
blue Now installing $arg...
if [[ -e /usr/bin/packer ]]
then
(packer --noconfirm -S $arg && blue $arg now installed) || red Error installing $arg.
(sudo packer --noconfirm -S $arg && blue $arg now installed) || red Error installing $arg.
else
(aurinstall $arg && blue $arg now installed) || red Error installing $arg.
fi