From ccb83c78f357c6f06e7e6a3bbd7388cb425ac2bb Mon Sep 17 00:00:00 2001 From: M Hightower <27247790+mhightower83@users.noreply.github.com> Date: Thu, 28 Apr 2022 08:08:40 -0700 Subject: [PATCH] Correction to run_CI_locall.sh `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 ee9dc39cb0..0c67eb202f 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