diff options
author | Adin Scannell <ascannell@google.com> | 2020-04-13 12:47:32 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-13 12:48:38 -0700 |
commit | aa75a3da5188d8f62d00fc6590708ca4886526b4 (patch) | |
tree | b331500f4b84701a512b445576b2f7ef1e00cad8 /benchmarks/runner/commands.py | |
parent | 6a4d17a31dc209afbbca66e871a7c6dc299c167b (diff) |
Fix build.sh and VM targets.
PiperOrigin-RevId: 306289643
Diffstat (limited to 'benchmarks/runner/commands.py')
-rw-r--r-- | benchmarks/runner/commands.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/benchmarks/runner/commands.py b/benchmarks/runner/commands.py index 194804527..e8289f6c5 100644 --- a/benchmarks/runner/commands.py +++ b/benchmarks/runner/commands.py @@ -101,15 +101,15 @@ class GCPCommand(RunCommand): image_file = click.core.Option( ("--image_file",), - help="The file containing the image for VMs.", + help="The binary that emits the GCP image.", default=os.path.join( - os.path.dirname(__file__), "../../tools/images/ubuntu1604.txt"), + os.path.dirname(__file__), "../../tools/images/ubuntu1604"), ) zone_file = click.core.Option( ("--zone_file",), - help="The file containing the GCP zone.", + help="The binary that emits the GCP zone.", default=os.path.join( - os.path.dirname(__file__), "../../tools/images/zone.txt"), + os.path.dirname(__file__), "../../tools/images/zone"), ) internal = click.core.Option( ("--internal/--no-internal",), |