Skip to content

Commit

Permalink
Correctly check for export_to_gee var in cogify script
Browse files Browse the repository at this point in the history
  • Loading branch information
jterry64 committed Jun 13, 2024
1 parent db7e4d1 commit 03763f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batch/scripts/cogify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fi
# upload to data lake
aws s3 cp cog.tif "${TARGET}"

if [ -z "$EXPORT_TO_GEE" ]; then
if [ -n "$EXPORT_TO_GEE" ]; then
python export_to_gee.py --dataset "${DATASET}" --implementation "${IMPLEMENTATION}"
fi

Expand Down

0 comments on commit 03763f4

Please sign in to comment.