FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit d5662061 authored by L. Bower's avatar L. Bower
Browse files

first stab at getting new runner script working

parent 9feb1cf9
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
original_args=("$@")
SHORT=p:h
OPTS=$(getopt -a --options $SHORT -- "$@")
echo $OPTS
......@@ -72,7 +74,7 @@ proc_path="$( dirname "$(readlink -f "$0" )" )"
# run the processor with all arguments
processor=${proc_path}/../coordinator/${processor_class}
printf "processor is %s\n\n" "$processor"
python "${processor}" "$@"
python "${processor}" "${original_args[@]}"
exit_code=$?;
# deactivate conda environment
......
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