Skip to content

Commit

Permalink
fix linux builds
Browse files Browse the repository at this point in the history
logic copy/paste error: I was accidentally downloading the signature twice
  • Loading branch information
maltfield committed Mar 6, 2024
1 parent 1f0a534 commit 4dbeb41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/linux/buildAppImage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ pushd "${tmpDir}"
# TODO: update this to query the GitHub API and grab the latest release
#${SUDO} ${SU} -c "${PYTHON} -m pip download libusb1"
#signature_url=`${SUDO} ${SU} -c "curl -s https://pypi.org/simple/libusb1/" | grep -oE "https://.*${filename}#" | sed 's/#/.asc/'`
file_url='https://github.com/vpelletier/python-libusb1/releases/download/3.1.0/libusb1-3.1.0-py3-none-any.whl.asc'
file_url='https://github.com/vpelletier/python-libusb1/releases/download/3.1.0/libusb1-3.1.0-py3-none-any.whl'
signature_url='https://github.com/vpelletier/python-libusb1/releases/download/3.1.0/libusb1-3.1.0-py3-none-any.whl.asc'
${SUDO} ${SU} -c "wget \"${file_url}\""
filename="`ls -1 | head -n1`"
Expand Down

0 comments on commit 4dbeb41

Please sign in to comment.