Skip to content

Commit

Permalink
make var local
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstnbwnkl committed Feb 29, 2024
1 parent 885f5c7 commit fcccaa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ run_cmd() {
}

do_build_tar() {
build_tar=$1
if ([[ ${build_tar} == "True" && ! -f $TILE_TAR ]]) || [[ ${build_tar} == "Force" ]]; then
local build_tar_local=$1
if ([[ ${build_tar_local} == "True" && ! -f $TILE_TAR ]]) || [[ ${build_tar_local} == "Force" ]]; then
options="-c ${CONFIG_FILE} -v --overwrite"
if ! [[ -z ${traffic_name} ]]; then
options="${options} -t"
Expand Down

0 comments on commit fcccaa6

Please sign in to comment.