Update the launch script to prevent quoting issues

This commit is contained in:
Matthew Lopez 2021-08-30 19:27:01 -04:00
parent cb4067e55a
commit e89e6e8a62
No known key found for this signature in database
GPG Key ID: 302A6EE3D63B7E0E

4
launch
View File

@ -1,4 +1,4 @@
#!/bin/bash
cd $(realpath --no-symlinks $(dirname $0))
$(basename $0) --set confdir="./configuration" $*
cd "$(realpath --no-symlinks "$(dirname "$0")")"
$(basename "$0") --set confdir="./configuration" "$@"