From 9a158cdfecd7a6b603ca7e577a67c4864ea8439e Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 14 Jan 2022 00:54:20 -0300 Subject: [PATCH] Run shellcheck (bootstrap.sh) --- scripts/bootstrap.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 639fb59..52e2c5a 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -87,11 +87,11 @@ checkForDependencies() { comm=$1 fi - command -v ${comm} &> /dev/null + command -v "${comm}" &> /dev/null if [ $? -eq 1 ]; then unameOutput=$(uname -a | grep "arch") - if [ -f "/etc/arch-release" ] || [ $unameOutput -eq 0 ]; then - sudo pacman --noconfirm --needed -Sy ${1} 2>&1 | debug + if [ -f "/etc/arch-release" ] || [ "$unameOutput" -eq 0 ]; then + sudo pacman --noconfirm --needed -Sy "${1}" 2>&1 | debug if [ $? -eq 1 ]; then echo "Couldn't install ${1}." >&2 exit 1 @@ -116,7 +116,8 @@ startRice() { runScript() { lastFolder=$(pwd -P) cocoRiceFolder=$(pwd -P | awk '{ sub(/CocoRice.*/, "CocoRice"); print }') - cd $cocoRiceFolder + cocoRiceFolder=marta + cd $cocoRiceFolder || echo "Couldn't cd into '$cocoRiceFolder'." 1>&2 && exit 1 source scripts/common.sh checkParameters "$@" @@ -126,7 +127,7 @@ runScript() { startRice clear - cd $lastFolder + cd $lastFolder || echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1 } runScript "$@" \ No newline at end of file