Skip to content

Commit 749c43d

Browse files
committed
Use resolved path for TMPDIR
1 parent d924de1 commit 749c43d

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
@@ -398,8 +398,8 @@ jobs:
398398
- name: Set up environment
399399
run: |
400400
brew install exempi # Needed by python-xmp-toolkit
401-
mkdir -p /tmp/DLTMP
402-
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
401+
mkdir -p /private/tmp/DLTMP
402+
echo TMPDIR=/private/tmp/DLTMP >> "$GITHUB_ENV"
403403
git config --global user.email "[email protected]"
404404
git config --global user.name "GitHub Almighty"
405405

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

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

0 commit comments

Comments
 (0)