Skip to content

Commit

Permalink
fix for busybox mktemp (#480)
Browse files Browse the repository at this point in the history
* fix for busybox mktemp, issue #475
  • Loading branch information
joshrabinowitz authored May 26, 2019
1 parent 10fa2a7 commit f2c398f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

### Bugfixes

- Fix git-secret init when used on busybox (#475)
- Update git-secret.io, fix utils/gh-branch.sh to use 'git all --add' (#344)
- Fix link to homebrew's git-secret in README.md (#310)
- Remove diagnostic output from test results (#324)
Expand Down
2 changes: 1 addition & 1 deletion src/_utils/_git_secret_tools_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function __temp_file_linux {
# relative to a directory: $TMPDIR, if set; else the directory
# specified via -p; else /tmp [deprecated]

filename=$(mktemp -p "${TMPDIR}" _git_secret.XXXXX )
filename=$(mktemp -p "${TMPDIR}" _git_secret.XXXXXX )
# makes a filename like /$TMPDIR/_git_secret.ONIHo
echo "$filename"
}
Expand Down

0 comments on commit f2c398f

Please sign in to comment.