mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-04 15:51:15 -03:00
Try to make mktemp work on Linux
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user