From 749c43de7561d434c8724ef4e31346f2590e6a9b Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Thu, 8 Apr 2021 09:36:44 -0400 Subject: [PATCH] Use resolved path for TMPDIR --- .github/workflows/build-macos.yaml | 4 ++-- .github/workflows/template/build-{{ostype}}.yaml.j2 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-macos.yaml b/.github/workflows/build-macos.yaml index 7113b13ca6..1f6963440c 100644 --- a/.github/workflows/build-macos.yaml +++ b/.github/workflows/build-macos.yaml @@ -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 "test@github.land" git config --global user.name "GitHub Almighty" diff --git a/.github/workflows/template/build-{{ostype}}.yaml.j2 b/.github/workflows/template/build-{{ostype}}.yaml.j2 index f5ec5d3f5c..fb3bec24c2 100644 --- a/.github/workflows/template/build-{{ostype}}.yaml.j2 +++ b/.github/workflows/template/build-{{ostype}}.yaml.j2 @@ -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 "test@github.land" git config --global user.name "GitHub Almighty"