Skip to content

Commit

Permalink
Use resolved path for TMPDIR
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Apr 8, 2021
1 parent 8eca5e9 commit a8956f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,8 @@ jobs:
- name: Set up environment
run: |
brew install exempi # Needed by python-xmp-toolkit
mkdir -p /tmp/DLTMP
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
mkdir -p /private/tmp/DLTMP
echo TMPDIR=/private/tmp/DLTMP >> "$GITHUB_ENV"
git config --global user.email "test@github.land"
git config --global user.name "GitHub Almighty"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/template/build-{{ostype}}.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -611,8 +611,8 @@ jobs:
run: |
{% if ostype == "macos" %}
brew install exempi # Needed by python-xmp-toolkit
mkdir -p /tmp/DLTMP
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
mkdir -p /private/tmp/DLTMP
echo TMPDIR=/private/tmp/DLTMP >> "$GITHUB_ENV"
{% endif %}
git config --global user.email "test@github.land"
git config --global user.name "GitHub Almighty"
Expand Down

0 comments on commit a8956f7

Please sign in to comment.