Skip to content

Commit

Permalink
Fix zero args case I just broke
Browse files Browse the repository at this point in the history
  • Loading branch information
RensDofferhoff committed Feb 22, 2024
1 parent 2009e7f commit ea4a051
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Tools/flatpak/org.jaspstats.JASP
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@
export LD_LIBRARY_PATH=/app/lib/x86_64-linux-gnu/:/app/lib/aarch64-linux-gnu/
export QML2_IMPORT_PATH=$QML2_IMPORT_PATH:/app/qml

JASP "$1"
if [ "$#" -eq "0" ]
then
JASP
else
JASP "$1"
fi

0 comments on commit ea4a051

Please sign in to comment.