From 86584e09c209db65a70d943bd7a4940cba312a07 Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Thu, 4 Apr 2024 21:07:07 +0000 Subject: [PATCH] Per #366, fix cut/paste error in the configure_sonarqube.sh script. --- .github/jobs/configure_sonarqube.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/jobs/configure_sonarqube.sh b/.github/jobs/configure_sonarqube.sh index 929b03fa..aedcb9ae 100755 --- a/.github/jobs/configure_sonarqube.sh +++ b/.github/jobs/configure_sonarqube.sh @@ -4,9 +4,9 @@ SONAR_PROPERTIES_DIR=internal/scripts/sonarqube SONAR_PROPERTIES=sonar-project.properties -# Check that this is being run from the top-level METdataio directory +# Check that this is being run from the top-level METcalcpy directory if [ ! -e $SONAR_PROPERTIES_DIR/$SONAR_PROPERTIES ]; then - echo "ERROR: ${0} -> must be run from the top-level METdataio directory" + echo "ERROR: ${0} -> must be run from the top-level METcalcpy directory" exit 1 fi @@ -47,8 +47,8 @@ fi # Configure the sonar-project.properties [ -e $SONAR_PROPERTIES ] && rm $SONAR_PROPERTIES -sed -e "s|SONAR_PROJECT_KEY|METdataio-GHA|" \ - -e "s|SONAR_PROJECT_NAME|METdataio GHA|" \ +sed -e "s|SONAR_PROJECT_KEY|METcalcpy-GHA|" \ + -e "s|SONAR_PROJECT_NAME|METcalcpy GHA|" \ -e "s|SONAR_PROJECT_VERSION|$SONAR_PROJECT_VERSION|" \ -e "s|SONAR_HOST_URL|$SONAR_HOST_URL|" \ -e "s|SONAR_TOKEN|$SONAR_TOKEN|" \