Skip to content

Commit

Permalink
make-single-file-spm: better directory name (apple#1446)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
weissi authored Mar 13, 2020
1 parent 648a671 commit ad0c671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/make-single-file-spm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ad0c671

Please sign in to comment.