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

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" "$@"