From d3b36d876742d3b5d58959a036913c2f40168c76 Mon Sep 17 00:00:00 2001 From: Kim Rutherford Date: Wed, 15 May 2024 21:47:46 +1200 Subject: [PATCH] Add missing break while parsing Docker script args Was causing an infinite loop in some cases. --- script/canto_start_docker | 1 + 1 file changed, 1 insertion(+) diff --git a/script/canto_start_docker b/script/canto_start_docker index 911e3ec75..7eaa8ad3f 100755 --- a/script/canto_start_docker +++ b/script/canto_start_docker @@ -60,6 +60,7 @@ while [[ $# -gt 0 ]]; do shift ;; *) + break ;; esac done