From 9a08be907deb90adb55455942ed1ac272e35d913 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 14 Jan 2022 01:30:19 -0300 Subject: [PATCH] Run shellcheck (install.sh) --- CocoRice.log | 1 + scripts/bootstrap.sh | 2 +- scripts/install.sh | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 CocoRice.log diff --git a/CocoRice.log b/CocoRice.log new file mode 100644 index 0000000..5c1b149 --- /dev/null +++ b/CocoRice.log @@ -0,0 +1 @@ +hola diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index add0526..2a5d0ff 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -129,4 +129,4 @@ runScript() { cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; } } -runScript "$@" \ No newline at end of file +runScript "$@" diff --git a/scripts/install.sh b/scripts/install.sh index d6b7d74..b1b503c 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,13 +2,13 @@ cloneAndMake() { displayDialogBox --infobox "Downloading ${1}" VALUES - git clone $2 2>&1 | debug - (cd $1; sudo make install 2>&1 | debug) + git clone "$2" 2>&1 | debug + (cd "$1" || { echo "Couldn't cd into '$1'." 1>&2 && exit 1; }; sudo make install 2>&1 | debug) } downloadAndInstallPackages() { - DOTFILES_CONFIG=$HOME/.config - cd $DOTFILES_CONFIG + DOTFILES_CONFIG="$HOME/.config" + cd "$DOTFILES_CONFIG" || { echo "Couldn't cd into '$DOTFILES_CONFIG'." 1>&2 && exit 1; } if [[ ! -d "dwmblocks" ]]; then cloneAndMake "dwmblocks" "https://github.com/santilococo/dwmblocks.git"