Skip to content

Commit

Permalink
Remove double parens
Browse files Browse the repository at this point in the history
  • Loading branch information
dmannarino committed Nov 1, 2024
1 parent 6e6838a commit 18fc7c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions batch/scripts/unify_projection.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ for s in ${SRC[@]}; do
mkdir -p "$reprojected_dir"

cd $source_dir
for d in $((tree -dfi)); do
for d in $(tree -dfi); do
mkdir -p "../${reprojected_dir}/${d}"
done

for f in $((find . -iname "*.tif")); do
for f in $(find . -iname "*.tif"); do
local_src_file="${source_dir}/${f}"
local_warped_file="${reprojected_dir}/${f}"
remote_target_file="${TARGET}/SRC_${src_count}/${f}"
Expand Down

0 comments on commit 18fc7c8

Please sign in to comment.