Skip to content

Commit

Permalink
Update run.sh (#70)
Browse files Browse the repository at this point in the history
Is the infrastructure calling this script with more than 3 arguments?
  • Loading branch information
glennj authored Jul 16, 2024
1 parent bbf0d91 commit 9c2c1f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
INTERFACE_VERSION=2

main() {
if (($# != 3)) || [[ $1 == '-h' ]]; then
if (($# < 3)) || [[ $1 == '-h' ]]; then
echo "usage: $0 <exercise_slug> <solution_directory> <output_directory>"
echo ""
echo "Typically, solution_directory == output_directory"
Expand Down

0 comments on commit 9c2c1f3

Please sign in to comment.