1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-02 23:23:53 +01:00

Merge pull request #40 from emabrey/master

Fix issue that intermittently appeared to be causing Mac OS CI build failures.
This commit is contained in:
Emily Mabrey
2021-07-08 16:28:28 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -205,7 +205,7 @@ cp "${SRCROOT}/Resources/Audacity-DMG-background.png" "${DMG}/.background"
ATTACHED=$(hdiutil info | awk "/\/Volumes\/${VOL}/{print \$1}")
if [ -n "${ATTACHED}" ]
then
hdiutil detach "${ATTACHED}"
#hdiutil detach "${ATTACHED}"
fi
# Create and mount the image

View File

@@ -13,7 +13,7 @@ function gh_export()
export -- "$@" && printf "%s\n" "$@" >> "${GITHUB_ENV}"
}
repository_root="$(cd "$(dirname "${BASH_SOURCE}")/../.."; echo "${PWD}")"
repository_root="$(cd "$(dirname "${BASH_SOURCE}")/.."; echo "${PWD}/${GITHUB_ACTOR}")"
gh_export GIT_HASH="$(git show -s --format='%H')"
gh_export GIT_HASH_SHORT="$(git show -s --format='%h')"