Skip to content

Commit 33d2c9e

Browse files
committed
Mark toolchain parameter as required
If the toolchain was not provided, build-script would crash. Hence, we should mark it as required.
1 parent 0cd1fea commit 33d2c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ def parse_args():
563563
'SwiftSyntax with other projects.')
564564

565565
build_group.add_argument(
566-
'--toolchain',
566+
'--toolchain', required=True,
567567
help='The path to the toolchain that shall be used to build '
568568
'SwiftSyntax.')
569569

0 commit comments

Comments
 (0)