Skip to content

Commit

Permalink
Merge pull request #27 from andstor/develop
Browse files Browse the repository at this point in the history
v3.0.1
  • Loading branch information
andstor authored Mar 28, 2020
2 parents b14e6d3 + 5c98298 commit 820eafb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [3.0.1] - 2020-03-28
### Fixed
- Fix copying of files with names containing spaces.

## [3.0.0] - 2020-03-10
### Added
- Input variable `clean` for optional removal of contents in the `dst_path` before copying.
Expand All @@ -22,7 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org).

## 1.0.0 - 2019-07-09

[Unreleased]: https://github.com/andstor/copycat-action/compare/v3.0.0...HEAD
[Unreleased]: https://github.com/andstor/copycat-action/compare/v3.0.1...HEAD
[3.0.1]: https://github.com/andstor/copycat-action/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/andstor/copycat-action/compare/v2.0.0...v3.0.0
[2.0.0]: https://github.com/andstor/copycat-action/compare/v1.1.0...v2.0.0
[1.1.0]: https://github.com/andstor/copycat-action/compare/v1.1.0...v1.0.1
Expand Down
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 820eafb

Please sign in to comment.