Skip to content
Snippets Groups Projects
Commit 957336fa authored by Studer Gabriel's avatar Studer Gabriel
Browse files

proper argument parsing in dng startup script

parent 6ebdc129
No related branches found
No related tags found
No related merge requests found
......@@ -28,4 +28,16 @@ fi
BIN_DIR=`dirname "$SCRIPT_NAME"`
source "$BIN_DIR/../@LIBEXEC_PATH@/ost_config"
opts=""
for argument in "$@";do
if [ -n "$opts" ]; then
opts=$opts"#""$argument"
else
opts="$argument"
fi
done
IFS="#"
$BIN_DIR/../@LIBEXEC_PATH@/gosty $DNG_INITDIR/dng_startup.py dng $opts
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment