Skip to content

Commit

Permalink
Merge pull request #26 from rywall/patch-1
Browse files Browse the repository at this point in the history
Handle spaces in filenames
  • Loading branch information
andstor authored Mar 28, 2020
2 parents f8e71cd + d000550 commit 486eb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ if [[ -n "$FILTER" ]]; then
[[ $f == $EXCLUDE ]] && continue
fi
file_dir=$(dirname "${f}")
mkdir -p ${tmp_dir}/${SRC_REPO_NAME}/${file_dir} && cp ${f} ${tmp_dir}/${SRC_REPO_NAME}/${file_dir}
mkdir -p ${tmp_dir}/${SRC_REPO_NAME}/${file_dir} && cp "${f}" ${tmp_dir}/${SRC_REPO_NAME}/${file_dir}
done
cd ..
fi
Expand Down

0 comments on commit 486eb6b

Please sign in to comment.