From c511f50a9e7686f08c7931310361b8b41707eb90 Mon Sep 17 00:00:00 2001 From: Deda Date: Sun, 25 Feb 2024 13:11:36 +0100 Subject: [PATCH] Fix code analysis typo --- release/package/run2.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/package/run2.sh b/release/package/run2.sh index 9bab57a6a..cfdfea1b9 100755 --- a/release/package/run2.sh +++ b/release/package/run2.sh @@ -367,7 +367,7 @@ test_memgraph() { ;; code-analysis) shift 1 - docker exec -u mg $build_container bash -c "$EXPORT_LICENSE && $EXPORT_ORG_NAME && cd $MGBUILD_ROOT_DIR/tests/code-analysis && ./python_code_analysis.sh $@" + docker exec -u mg $build_container bash -c "$EXPORT_LICENSE && $EXPORT_ORG_NAME && cd $MGBUILD_ROOT_DIR/tests/code_analysis && ./python_code_analysis.sh $@" ;; code-coverage) local test_output_path="$MGBUILD_ROOT_DIR/tools/github/generated/code_coverage.tar.gz" @@ -377,7 +377,7 @@ test_memgraph() { ;; clang-tidy) shift 1 - docker exec -u mg $build_container bash -c "$EXPORT_LICENSE && $EXPORT_ORG_NAME && export THREADS=$threads && $ACTIVATE_TOOLCHAIN && cd $MGBUILD_ROOT_DIR/tests/code-analysis && ./clang_tidy.sh $@" + docker exec -u mg $build_container bash -c "$EXPORT_LICENSE && $EXPORT_ORG_NAME && export THREADS=$threads && $ACTIVATE_TOOLCHAIN && cd $MGBUILD_ROOT_DIR/tests/code_analysis && ./clang_tidy.sh $@" ;; *) echo "Error: Unknown test '$1'"