rename toolsetJson -> toolset

This commit is contained in:
Aleksandr Chebotov
2020-09-08 19:09:31 +03:00
parent 2881a81b22
commit b8d3652352
3 changed files with 11 additions and 11 deletions

View File

@@ -8,9 +8,9 @@ set -e
# Source the helpers for use with the script
source $HELPER_SCRIPTS/document.sh
toolsetJson="$INSTALLER_SCRIPT_FOLDER/toolset.json"
common_packages=$(jq -r ".apt.common_packages[]" $toolsetJson)
cmd_packages=$(jq -r ".apt.cmd_packages[]" $toolsetJson)
toolset="$INSTALLER_SCRIPT_FOLDER/toolset.json"
common_packages=$(jq -r ".apt.common_packages[]" $toolset)
cmd_packages=$(jq -r ".apt.cmd_packages[]" $toolset)
for package in $common_packages $cmd_packages; do
echo "Install $package"
apt-get install -y --no-install-recommends $package