Skip to content

Commit

Permalink
Fix SO MANY BUGS
Browse files Browse the repository at this point in the history
  • Loading branch information
dmannarino committed Jul 22, 2024
1 parent 3484ce7 commit d20105f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/tasks/static_vector_tile_cache_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async def static_vector_tile_cache_asset(
if creation_options.feature_filter:
command += (
"--filter",
f"'{json.dumps(jsonable_encoder(creation_options.feature_filter))}'"
json.dumps(jsonable_encoder(creation_options.feature_filter))
)

tile_cache_jobs.append(
Expand Down
2 changes: 1 addition & 1 deletion batch/scripts/create_vector_tile_cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ keep_all) # never drop or coalesce feature, ignore size and feature count
;;
esac

if [ -n "FILTER" ]; then
if [ -n "${FILTER}" ]; then
TIPPE_ARG_ARRAY+=("-j" "${FILTER}")
fi

Expand Down
2 changes: 1 addition & 1 deletion batch/scripts/get_arguments.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ do
shift # past value
;;
--filter)
filter="$2"
FILTER="$2"
shift
shift
;;
Expand Down

0 comments on commit d20105f

Please sign in to comment.