Skip to content

Commit

Permalink
Handle spaces in filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
rywall authored Mar 27, 2020
1 parent b14e6d3 commit d000550
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 d000550

Please sign in to comment.