From 87b7730a5f31a0939c89e2b1d18a669cfcdfc0a2 Mon Sep 17 00:00:00 2001 From: yinrun Date: Fri, 25 Oct 2024 16:48:13 +0800 Subject: [PATCH] Fix bash.sh build -b params missing --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index db249550491d..2e6d2167b3ef 100755 --- a/build.sh +++ b/build.sh @@ -72,7 +72,7 @@ EOF # Process command-line options. Remember the options for passing to the # containerized build script. -while getopts :aAbd:ceEhiI:j:orstvfX: optchr; do +while getopts :aAb:d:ceEhiI:j:orstvfX: optchr; do case "$optchr" in a) enable_autotuner="0" -- Gitee