From b4f77d570684aa399856c29a633b82feb3ccfc8d Mon Sep 17 00:00:00 2001 From: Soorria Saruva Date: Fri, 14 Jul 2023 16:26:53 +1000 Subject: [PATCH] fix stopping watch in codegen script --- scripts/update-codegen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-codegen.sh b/scripts/update-codegen.sh index 2086966..3beed60 100755 --- a/scripts/update-codegen.sh +++ b/scripts/update-codegen.sh @@ -36,7 +36,7 @@ if [ -z "$types_diff" ]; then exit 1 fi -npm run test --watch=false && npm run typecheck --watch=false +npm run test -- --watch=false && npm run typecheck -- --watch=false if [ $? -ne 0 ]; then echo "Tests or typecheck failed, exiting"