From f149d7b70e9190468d82da86e361346e983d9d95 Mon Sep 17 00:00:00 2001 From: M Hightower <27247790+mhightower83@users.noreply.github.com> Date: Sat, 30 Apr 2022 08:17:13 -0700 Subject: [PATCH] Correction to run_CI_locall.sh (#8552) `tests/ci/check_restyle.sh` does not exist; however, `tests/ci/style_check.sh` does. Changed run_CI_locally.sh to run style_check.sh from ci directory. --- tests/run_CI_locally.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_CI_locally.sh b/tests/run_CI_locally.sh index ee9dc39cb..0c67eb202 100755 --- a/tests/run_CI_locally.sh +++ b/tests/run_CI_locally.sh @@ -115,7 +115,7 @@ elif [ "$BUILD_TYPE" = host ]; then tests/ci/host_test.sh elif [ "$BUILD_TYPE" = style ]; then - tests/ci/check_restyle.sh + tests/ci/style_check.sh tests/restyle.sh else