~ chicken-core (chicken-5) 5126233351889ed797e4b23e604b5f93058edce3


commit 5126233351889ed797e4b23e604b5f93058edce3
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Tue Dec 31 21:50:12 2024 +0100
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Tue Dec 31 21:51:50 2024 +0100

    bootstrap.sh: Fix case syntax error
    
    Fix by Pietro Cerutti submitted to chicken-hackers:
    https://lists.nongnu.org/archive/html/chicken-hackers/2024-12/msg00024.html
    
    The issue was introduced in 6f696411db4deeb6be6eca9e61e85c539bb75c68

diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh
index 93376cc4..60485e74 100755
--- a/scripts/bootstrap.sh
+++ b/scripts/bootstrap.sh
@@ -14,7 +14,7 @@ case "$(uname)" in
     *BSD)
 	# Counter-intuitively, the ftp(1) program on many
 	# BSDs supports both HTTP(S) and FTP
-        getcmd=ftp;;
+        getcmd=ftp
         mkcmd=gmake;;
 esac
 
Trap