Skip to content

Commit 9b7a99f

Browse files
committed
Set TMPDIR=/tmp/DLTMP
1 parent 8f49d0f commit 9b7a99f

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
@@ -381,8 +381,8 @@ jobs:
381381
- name: Set up environment
382382
run: |
383383
brew install exempi # Needed by python-xmp-toolkit
384-
mkdir -p ~/DLTMP
385-
echo TMPDIR="$HOME"/DLTMP >> "$GITHUB_ENV"
384+
mkdir -p /tmp/DLTMP
385+
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
386386
git config --global user.email "[email protected]"
387387
git config --global user.name "GitHub Almighty"
388388

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,8 @@ jobs:
610610
run: |
611611
{% if ostype == "macos" %}
612612
brew install exempi # Needed by python-xmp-toolkit
613-
mkdir -p ~/DLTMP
614-
echo TMPDIR="$HOME"/DLTMP >> "$GITHUB_ENV"
613+
mkdir -p /tmp/DLTMP
614+
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
615615
{% endif %}
616616
git config --global user.email "[email protected]"
617617
git config --global user.name "GitHub Almighty"

0 commit comments

Comments
 (0)