From c0990228792b534343d601f15d5feab59c9ca1d6 Mon Sep 17 00:00:00 2001 From: Zachary Goldberg Date: Wed, 14 Jun 2023 13:20:21 -0700 Subject: [PATCH] Update scripts/generate_single_test_buildspec_codebuild.ts Co-authored-by: John Hockett --- scripts/generate_single_test_buildspec_codebuild.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate_single_test_buildspec_codebuild.ts b/scripts/generate_single_test_buildspec_codebuild.ts index 6c560b31629..86283296b91 100644 --- a/scripts/generate_single_test_buildspec_codebuild.ts +++ b/scripts/generate_single_test_buildspec_codebuild.ts @@ -19,7 +19,7 @@ const main = () => { } const os = process.argv[3]; if (!(os === 'l' || os === 'w')) { - throw new Error('Invalid job type.'); + throw new Error('Invalid job type. Expected "l" for linux or "w" for windows.'); } const region = process.argv[4]; if (!regions.includes(region)) {