Skip to content

Commit

Permalink
Merge pull request #1424 from AsterisMono/fix-darwin-tmp-path
Browse files Browse the repository at this point in the history
reproduce.tt: Use realpath for tmpDir to fix macOS compatibility
  • Loading branch information
dasJ authored Nov 26, 2024
2 parents 9de9cb0 + 6456c1d commit 3b16941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/root/reproduce.tt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ main() {

set -e

tmpDir=${TMPDIR:-/tmp}/build-[% build.id +%]
tmpDir=$(realpath "${TMPDIR:-/tmp}")/build-[% build.id +%]
declare -a args extraArgs


Expand Down

0 comments on commit 3b16941

Please sign in to comment.