minor changes

This commit is contained in:
Solomon Laing 2021-08-29 16:18:52 +09:30
parent 493c79a352
commit 69369f36fd

View File

@ -85,7 +85,17 @@ if [ $laptop -eq 1 ]; then
fi
if ! yay -Qi $dependency &> /dev/null; then
failures+=("$dependency")
# there are likely some dependencies that won't have an associated command
# TODO: find a better way to deal with this, eg have something like xorg COMMAND xprop in default programs
# just catch everything, ik there are better ways to do this
case $failure in
xorg)
;;
*)
failures+=("$dependency")
;;
esac
fi
done
fi