Skip to content

Commit 03c5bd9

Browse files
authored
Merge pull request #11 from OleksiiBulba/fix/issue-10
Fix the issue when installing dockerizer
2 parents 7a17efd + 0bdb7d7 commit 03c5bd9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2626

2727
### Fixed
2828
- Small code adjustment;
29+
- Fixed issue-10 when installing dockerizer
2930

3031
## [0.2.0] - 2021-07-19
3132

bin/onlinesetup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function git_init() {
1818

1919
function makefile_init() {
2020
MakeFile=${1:-$(pwd)/Makefile}
21-
touch -c "$MakeFile"
21+
touch "$MakeFile"
2222
if ! grep -qF 'include ./.dockerizer/dockerizer.mk' "$MakeFile"; then
2323
echo -e "include ./.dockerizer/dockerizer.mk\n\n$(cat "$MakeFile")" > "$MakeFile"
2424
fi

0 commit comments

Comments
 (0)