]> git.pld-linux.org Git - projects/cleanbuild.git/commitdiff
Fix multiple --with/--without parameters
authorElan Ruusamäe <glen@pld-linux.org>
Wed, 10 Mar 2021 22:52:30 +0000 (00:52 +0200)
committerElan Ruusamäe <glen@pld-linux.org>
Wed, 10 Mar 2021 23:10:58 +0000 (01:10 +0200)
bin/cleanbuild-docker.sh

index eb6e6e78225c97d0378a0ae51c8266226290772d..755b359136636bfbdc4c92b93588ae246e96fd95 100755 (executable)
@@ -172,11 +172,11 @@ parse_options() {
                        ;;
                --with)
                        shift
-                       WITH="$WITH $1"
+                       WITH="$WITH,$1"
                        ;;
                --without)
                        shift
-                       WITHOUT="$WITHOUT $1"
+                       WITHOUT="$WITHOUT,$1"
                        ;;
                --)
                        shift
This page took 0.089587 seconds and 4 git commands to generate.