Merge pull request #693 from xakraz/fix-mktemp-pattern

Fixed mktemp template to support busybox (and Alpine linux)
This commit is contained in:
罗泽轩 2018-02-11 20:26:23 +08:00 committed by GitHub
commit 5dbab48aff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,6 @@
# make a temporary file
git_extra_mktemp() {
mktemp -t "$(basename "$0")".XXX
mktemp -t "$(basename "$0")".XXXXXXX
}