Skip to content

Commit

Permalink
Add missing break while parsing Docker script args
Browse files Browse the repository at this point in the history
Was causing an infinite loop in some cases.
  • Loading branch information
kimrutherford committed May 15, 2024
1 parent fc61859 commit d3b36d8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions script/canto_start_docker
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ while [[ $# -gt 0 ]]; do
shift
;;
*)
break
;;
esac
done
Expand Down

0 comments on commit d3b36d8

Please sign in to comment.