1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Linux - Fixed passed arguments again

This commit is contained in:
Diogo Trindade 2023-03-27 00:37:52 +01:00
parent 8fc296a4c5
commit c3aa8b0831

View File

@ -48,13 +48,9 @@ sleep 1
# When finished, start Artemis again
# If the user has specified arguments, pass them to the executable
if [ -z "$artemisArgs" ]
then
"$destinationDirectory/Artemis.UI.Linux" &
else
"$destinationDirectory/Artemis.UI.Linux" "$artemisArgs" &
fi
# quoting here breaks stuff, all arguments count as 1
# shellcheck disable=SC2086
"$destinationDirectory/Artemis.UI.Linux" $artemisArgs &