Skip to content

Commit

Permalink
Fix counting srcs
Browse files Browse the repository at this point in the history
  • Loading branch information
dmannarino committed Oct 31, 2024
1 parent 16a2cff commit 686c871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batch/scripts/unify_projection.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ for s in ${SRC}; do

CMD_ARGS+=("${remote_src_file}" "${local_src_file}" "${local_warped_file}" "${TARGET_CRS}" "${remote_target_file}")
done
((src_count++))
src_count=$(($src_count+1))
done

echo "${CMD_ARGS[@]}" | xargs -n 5 -P 32 _warp_and_upload.sh

0 comments on commit 686c871

Please sign in to comment.