Skip to content

Commit

Permalink
fix #145
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsnolde committed Mar 7, 2024
1 parent ac39d31 commit 2565255
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/run.sh
Expand Up @@ -18,12 +18,12 @@ run_cmd() {

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

0 comments on commit 2565255

Please sign in to comment.