Skip to content

Commit

Permalink
Merge branch 'fix-mac-builds' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
maltfield committed May 10, 2023
2 parents ca0c923 + a57deba commit c7d11e8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build/mac/buildDmg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,10 @@ ${PIP_PATH} download python-gnupg
${PYTHON_PATH} -m pip download python-gnupg
filename="`ls -1 | head -n1`"
signature_url=`curl -s https://pypi.org/simple/python-gnupg/ | grep -oE "https://.*${filename}#" | sed 's/#/.asc/'`
wget "${signature_url}"
#wget "${signature_url}"
# switching from wget to curl to avoid "dyld Library not loaded" brew issues
# * https://github.com/BusKill/buskill-app/issues/70
curl --remote-name "${signature_url}"

mkdir gnupg
chmod 0700 gnupg
Expand All @@ -215,7 +218,10 @@ pushd "${tmpDir}"
${PIP_PATH} download libusb1
filename="`ls -1 | head -n1`"
signature_url=`curl -s https://pypi.org/simple/libusb1/ | grep -oE "https://.*${filename}#" | sed 's/#/.asc/'`
wget "${signature_url}"
#wget "${signature_url}"
# switching from wget to curl to avoid "dyld Library not loaded" brew issues
# * https://github.com/BusKill/buskill-app/issues/70
curl --remote-name "${signature_url}"

mkdir gnupg
chmod 0700 gnupg
Expand Down

0 comments on commit c7d11e8

Please sign in to comment.