From bc6aa86b8afabd4e4e4c8ee02dcb9f21099bee10 Mon Sep 17 00:00:00 2001 From: "Alexander \"Ace\" Olofsson" Date: Sun, 28 Aug 2016 21:56:53 +0200 Subject: [PATCH] And escaping the printf input --- CI/before_script.msvc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index 3d6c96174..742da74c5 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -679,7 +679,7 @@ if [ ! -z $CI ]; then fi if [ -z $VERBOSE ]; then - printf "- Configuring... " + printf -- "- Configuring... " else echo "- cmake .. $CMAKE_OPTS" fi @@ -702,13 +702,13 @@ if [ -z $CI ]; then echo "- Copying Runtime DLLs..." mkdir -p $BUILD_CONFIG for DLL in $RUNTIME_DLLS; do - echo " `basename $DLL`." + echo " `basename $DLL`." cp "$DLL" $BUILD_CONFIG/ done echo "- OSG Plugin DLLs..." mkdir -p $BUILD_CONFIG/osgPlugins-3.4.0 for DLL in $OSG_PLUGINS; do - echo " `basename $DLL`." + echo " `basename $DLL`." cp "$DLL" $BUILD_CONFIG/osgPlugins-3.4.0 done echo