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.
2 parents d3d1109 + 0868d44 commit 2ad9647Copy full SHA for 2ad9647
fpp
@@ -17,7 +17,7 @@ while [ -h "$SOURCE" ]; do
17
done
18
BASEDIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
19
20
-PYTHONCMD="python"
+PYTHONCMD="python3"
21
NONINTERACTIVE=false
22
23
# Setup according to XDG/Freedesktop standards as specified by
@@ -73,8 +73,8 @@ for opt in "$@"; do
73
VERSION="$($PYTHONCMD "$BASEDIR/src/version.py")"
74
echo "fpp version $VERSION"
75
exit 0
76
- elif [ "$opt" == "--python3" ]; then
77
- PYTHONCMD="python3"
+ elif [ "$opt" == "--python2" ]; then
+ PYTHONCMD="python2"
78
elif [ "$opt" == "--help" -o "$opt" == "-h" ]; then
79
$PYTHONCMD "$BASEDIR/src/printHelp.py"
80
0 commit comments