Run shellcheck (install.sh)
This commit is contained in:
parent
213a00d032
commit
9a08be907d
|
@ -0,0 +1 @@
|
||||||
|
hola
|
|
@ -129,4 +129,4 @@ runScript() {
|
||||||
cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; }
|
cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; }
|
||||||
}
|
}
|
||||||
|
|
||||||
runScript "$@"
|
runScript "$@"
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
cloneAndMake() {
|
cloneAndMake() {
|
||||||
displayDialogBox --infobox "Downloading ${1}" VALUES
|
displayDialogBox --infobox "Downloading ${1}" VALUES
|
||||||
git clone $2 2>&1 | debug
|
git clone "$2" 2>&1 | debug
|
||||||
(cd $1; sudo make install 2>&1 | debug)
|
(cd "$1" || { echo "Couldn't cd into '$1'." 1>&2 && exit 1; }; sudo make install 2>&1 | debug)
|
||||||
}
|
}
|
||||||
|
|
||||||
downloadAndInstallPackages() {
|
downloadAndInstallPackages() {
|
||||||
DOTFILES_CONFIG=$HOME/.config
|
DOTFILES_CONFIG="$HOME/.config"
|
||||||
cd $DOTFILES_CONFIG
|
cd "$DOTFILES_CONFIG" || { echo "Couldn't cd into '$DOTFILES_CONFIG'." 1>&2 && exit 1; }
|
||||||
|
|
||||||
if [[ ! -d "dwmblocks" ]]; then
|
if [[ ! -d "dwmblocks" ]]; then
|
||||||
cloneAndMake "dwmblocks" "https://github.com/santilococo/dwmblocks.git"
|
cloneAndMake "dwmblocks" "https://github.com/santilococo/dwmblocks.git"
|
||||||
|
|
Loading…
Reference in New Issue