Remove verbose option setting from zipping tool options

Closes #147
This commit is contained in:
Drew Bonasera 2020-06-14 18:36:41 -04:00
parent 53a59cf9a0
commit 66355825bd
1 changed files with 0 additions and 1 deletions

View File

@ -395,7 +395,6 @@ if [[ -n $ziptool ]]; then
envVarname="${MYNAME^^}_${ziptool^^}" # PISHRINK_GZIP or PISHRINK_XZ environment variables allow to override all options for gzip or xz
[[ $parallel == true ]] && options="${ZIP_PARALLEL_OPTIONS[$ziptool]}"
[[ -v $envVarname ]] && options="${!envVarname}" # if environment variable defined use these options
[[ $verbose == true ]] && options="$options -v" # add verbose flag if requested
if [[ $parallel == true ]]; then
parallel_tool="${ZIP_PARALLEL_TOOL[$ziptool]}"