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 5, 2022
1 parent d924de1 commit 749c43d
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 @@ -398,8 +398,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 "[email protected]"
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 @@ -674,8 +674,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 "[email protected]"
git config --global user.name "GitHub Almighty"
Expand Down

0 comments on commit 749c43d

Please sign in to comment.