Skip to content

Commit

Permalink
test: fix order of inputs to zenroom
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-cristino committed Oct 7, 2024
1 parent aa92107 commit 2cc123f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ zexe() {
fi

if [ "$keys" != "" ]; then
output=`zenroom -z $script -c $conf -a $tmpin -k $tmpkey`
output=`zenroom -c $conf -a $tmpin -k $tmpkey -z $script`
status=$?
rm -f $tmpin $tmpkey
elif [ "$input" != "" ]; then
output=`zenroom -z $script -c $conf -a $tmpin`
output=`zenroom -c $conf -a $tmpin -z $script`
status=$?
rm -f $tmpin
else
output=`zenroom -z $script -c $conf`
output=`zenroom -c $conf -z $script`
status=$?
fi
rm -f $script # getscript() generates this mktemp
Expand Down

0 comments on commit 2cc123f

Please sign in to comment.