Skip to content

Commit

Permalink
arg checker bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
baltzell committed Nov 1, 2024
1 parent 667624e commit a34707c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/run-clara
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ do
p) prefix=$OPTARG ;;
c) CLARA_HOME=$OPTARG ;;
t) threads=$OPTARG && echo $threads | grep -q -E '^[0-9]+$' || error "-t must be an integer, threads" ;;
n) nevents="-e $OPTARG" && echo $nevents | grep -q -E '^-e [0-9]+$' || error "-n must be an integer, events" ;;
n) nevents="-e $OPTARG" && echo "$nevents" | grep -q -E '^-e [0-9]+$' || error "-n must be an integer, events" ;;
m) merge=1 ;;
h) echo -e "\n$usage" && echo -e $info && exit 0 ;;
esac
Expand Down

0 comments on commit a34707c

Please sign in to comment.