Index: build/unittest.sh =================================================================== diff -u -raff7722b9c073adbb894820492d4e50db3b7f72e -rc32e05b36f9614d2b1db8a1d2f866cd89914bc1d --- build/unittest.sh (.../unittest.sh) (revision aff7722b9c073adbb894820492d4e50db3b7f72e) +++ build/unittest.sh (.../unittest.sh) (revision c32e05b36f9614d2b1db8a1d2f866cd89914bc1d) @@ -543,17 +543,17 @@ echo "FILES ${nameOfReports[@]}, $REPORT_DIR" for report in "${nameOfReports[@]}" do - ehco "This file was found: $report" + echo "This file was found: $report" local status="" local sonarStatus=$(grep "| Quality Gate Status | ERROR |" "$report") if [[ -z "$sonarStatus" ]]; then status="Passed"; else status="Failed"; fi if [[ "$report" == *"$sonarRunUIProject"* ]] then - ehco "UI SonarQube Result:,$status" >> "$STATUS_REPORT" + echo co "UI SonarQube Result:,$status" >> "$STATUS_REPORT" elif [[ "$report" == *"$sonarRunCloudSyncProject"* ]] then - ehco "Cloudsync SonarQube Result:,$status" >> "$STATUS_REPORT" + echo "Cloudsync SonarQube Result:,$status" >> "$STATUS_REPORT" fi done