From ffc834c3fe3eaaf10d82935116e343a548a117cc Mon Sep 17 00:00:00 2001 From: Don McCasland Date: Thu, 21 Feb 2019 16:44:21 -0800 Subject: [PATCH] out-dir for consistency --- hack/prow/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/prow/run_tests.py b/hack/prow/run_tests.py index 70c0f26ca..9fdae01e7 100755 --- a/hack/prow/run_tests.py +++ b/hack/prow/run_tests.py @@ -129,7 +129,7 @@ def main(argv): parser.add_argument('--test', required=True, help='full path to test script you want to run') parser.add_argument('--build-num', dest="buildnum", required=True, help='buildnumber for uploading to GCS') parser.add_argument('--bucket', default="k8s-minikube-prow", help='Name of the GCS bucket to upload to. Default: k8s-minkube-prow') - parser.add_argument('--outdir', default="gcs_out", help='Path of the directory to store all results, artifacts, and logs') + parser.add_argument('--out-dir', dest="outdir", default="gcs_out", help='Path of the directory to store all results, artifacts, and logs') args = parser.parse_args() if not os.path.exists(args.outdir): -- GitLab