fix $() escape

This commit is contained in:
Andrejus
2020-02-26 16:41:00 +00:00
parent 7bf22b00e8
commit 7955558654
3 changed files with 4 additions and 4 deletions

View File

@@ -52,7 +52,7 @@ readonly installer="$dotfiles_dir/$INSTALLER"
echo "using installer: $installer" echo "using installer: $installer"
# Ensure git is installed # Ensure git is installed
if ! [ -x $(command -v git) ]; then if ! [ -x "$(command -v git)" ]; then
echo "installing git..." echo "installing git..."
sudo apt-get update -qqy sudo apt-get update -qqy
sudo apt-get install git -qqy sudo apt-get install git -qqy

View File

@@ -10,6 +10,6 @@ readonly package_list_file="00-apt-pkglist"
update update
upgrade upgrade
# Package installs (don't escape list) # Package installs
readonly package_list=$(cat $install_dir/$package_list_file) readonly package_list=$(cat $install_dir/$package_list_file) # Don't escape list
install -y $package_list install -y $package_list

View File

@@ -48,7 +48,7 @@ indent() { sed 's/^/ /'; }
# @arg $1 binary to test # @arg $1 binary to test
not_installed() { not_installed() {
! [ -x $(command -v $1) ] ! [ -x "$(command -v $1)" ]
} }
# Colors # Colors