We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c22d46 commit 0b67aefCopy full SHA for 0b67aef
linuxdeploy-plugin-python.sh
@@ -228,7 +228,7 @@ patch_binary() {
228
}
229
230
cd "$APPDIR/${prefix}/bin"
231
-ln -s python3 python
+[ -f python3 ] && ln -fs python3 python
232
python=$(ls "python"?"."?)
233
mkdir -p "${APPDIR}/usr/lib"
234
cd "${APPDIR}/${prefix}/lib/${python}"
share/python-wrapper.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-SCRIPT=`realpath $0`
+SCRIPT=`readlink -f -- $0`
4
SCRIPTPATH=`dirname $SCRIPT`
5
APPDIR="${APPDIR:-$SCRIPTPATH/../..}"
6
0 commit comments