Skip to content

Commit 2925e14

Browse files
committed
Use resolved path for TMPDIR
1 parent b52f04e commit 2925e14

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-macos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,8 @@ jobs:
397397
- name: Set up environment
398398
run: |
399399
brew install exempi # Needed by python-xmp-toolkit
400-
mkdir -p /tmp/DLTMP
401-
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
400+
mkdir -p /private/tmp/DLTMP
401+
echo TMPDIR=/private/tmp/DLTMP >> "$GITHUB_ENV"
402402
git config --global user.email "[email protected]"
403403
git config --global user.name "GitHub Almighty"
404404

.github/workflows/template/build-{{ostype}}.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,8 +675,8 @@ jobs:
675675
run: |
676676
{% if ostype == "macos" %}
677677
brew install exempi # Needed by python-xmp-toolkit
678-
mkdir -p /tmp/DLTMP
679-
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
678+
mkdir -p /private/tmp/DLTMP
679+
echo TMPDIR=/private/tmp/DLTMP >> "$GITHUB_ENV"
680680
{% endif %}
681681
git config --global user.email "[email protected]"
682682
git config --global user.name "GitHub Almighty"

0 commit comments

Comments
 (0)