mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Try to make mktemp work on Linux
This commit is contained in:
parent
1bbac9e5ce
commit
1a0a3d85ca
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ mkdir -p "${OUTPUTDIR}"
|
|||
|
||||
|
||||
# Make a temporary directory
|
||||
TMPLOC=`mktemp -d -t fish_doc_build` || { echo >&2 "Could not build documentation because mktemp failed"; exit 1; }
|
||||
TMPLOC=`mktemp -d -t fish_doc_build_XXXXXX` || { echo >&2 "Could not build documentation because mktemp failed"; exit 1; }
|
||||
|
||||
# Copy stuff to the temp directory
|
||||
for i in "$FISHDIR"/doc_src/*.txt; do
|
||||
|
|
Loading…
Reference in a new issue