Skip to content

Commit

Permalink
Fix Python3 syntax error in Linux build script
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswettenhall committed Feb 27, 2020
1 parent 489c1df commit d10410d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linux/package_linux_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cp MyData.sh dist/MyData/
mkdir dist/MyData/media
cp -r ../mydata/media/* dist/MyData/media/

cp $(python -c 'import requests; print requests.certs.where()') dist/MyData/
cp $(python -c 'import requests; print(requests.certs.where())') dist/MyData/

mkdir dist/MyData-${VERSION}_${ARCHITECTURE}
cp MyData.sh dist/MyData-${VERSION}_${ARCHITECTURE}
Expand Down

0 comments on commit d10410d

Please sign in to comment.