make-single-file-spm: better directory name (#1446)

Motivation:

The make-single-file-spm script used to use a hidden folder in /tmp
which isn't very helpful when tar'ing up the result for a bug report.

Modifications:

Switch to a non-hidden folder.

Result:

Easier bugs.swift.org reports.
This commit is contained in:
Johannes Weiss 2020-03-13 18:01:37 +01:00 committed by GitHub
parent 648a6712ff
commit ad0c671acf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ if [[ $# -lt 2 ]]; then
exit 1
fi
destination=$(mktemp -d /tmp/.gen-swift-perf-test_XXXXXX)
destination=$(mktemp -d /tmp/test_package_XXXXXX)
file="$1"
command="$2"
shift; shift