Skip to content

Commit 49da716

Browse files
committed
Merge pull request #2372 from shahmishal/master
[build-script] Fix --verbose-build argument to use bool type
2 parents d46d548 + 9722b4d commit 49da716

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

utils/build-script

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,11 @@ details of the setups of other systems or automated environments.""")
872872
parser.add_argument(
873873
"--verbose-build",
874874
help="print the commands executed during the build",
875-
action="store_true")
875+
metavar="BOOL",
876+
nargs='?',
877+
type=argparse_bool,
878+
default=False,
879+
const=True)
876880

877881
args = migration.parse_args(parser, sys.argv[1:])
878882

0 commit comments

Comments
 (0)