From 79ccb8b8466f84edc31f33acc8b99788f3e5a3f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Wed, 27 Nov 2019 14:41:21 +0000 Subject: [PATCH] fixed echo statements --- scripts/run_buildkite.bat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/run_buildkite.bat b/scripts/run_buildkite.bat index 5e7634c..68470f4 100644 --- a/scripts/run_buildkite.bat +++ b/scripts/run_buildkite.bat @@ -12,16 +12,16 @@ rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. -echo "--- CMake" +echo --- CMake call %~dp0\run_cmake.bat if %errorlevel% neq 0 exit /b %errorlevel% -echo "--- ninja all" +echo --- ninja all call %~dp0\run_ninja.bat all if %errorlevel% neq 0 exit /b %errorlevel% -echo "--- ninja check-all" +echo --- ninja check-all call %~dp0\run_ninja.bat check-all if %errorlevel% neq 0 exit /b %errorlevel% -echo "--- done" \ No newline at end of file +echo --- done \ No newline at end of file