Skip to content

Commit 6742650

Browse files
committed
Update docker utils for argument parser dependency
1 parent 693a787 commit 6742650

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Utilities/Docker/docker-utils

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def docker_run(command_args):
3333
llbuild_dir = os.path.normpath(os.path.join(swiftpm_dir, '../llbuild'))
3434
swift_driver_dir = os.path.normpath(os.path.join(swiftpm_dir, '../swift-driver'))
3535
yams_dir = os.path.normpath(os.path.join(swiftpm_dir, '../yams'))
36+
argument_parser_dir = os.path.normpath(os.path.join(swiftpm_dir, '../swift-argument-parser'))
3637
call([
3738
"docker",
3839
"run",
@@ -42,6 +43,7 @@ def docker_run(command_args):
4243
"-v", "%s:/llbuild" % llbuild_dir,
4344
"-v", "%s:/swift-driver" % swift_driver_dir,
4445
"-v", "%s:/yams" % yams_dir,
46+
"-v", "%s:/swift-argument-parser" % argument_parser_dir,
4547
"-w", "/swiftpm",
4648
"--rm",
4749
"swiftpm-docker-1804"

0 commit comments

Comments
 (0)