Run shellcheck

This commit is contained in:
Santiago Lo Coco 2022-03-01 17:26:01 -03:00
parent 5d4590b055
commit a3fc1d1929
1 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,7 @@ installAurDeps() {
set +e
pkgInfo=$(pacman -Ss "${pkgName}" 2> /dev/null)
set -e
if ! echo $pkgInfo | grep -q "\/${pkgName} "; then
if ! echo "$pkgInfo" | grep -q "\/${pkgName} "; then
aurPkgs+=("$pkgName")
fi
done
@ -106,7 +106,6 @@ runScript() {
getInputs
addUser
baseDir="$PWD"
if [ -n "$pkgDir" ] && [ "$pkgDir" != "." ]; then
inBaseDir=false
cd "$pkgDir"