From fe1568f4cabcc36baf72b38bad02a16951435bd0 Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Fri, 19 Oct 2018 00:46:57 +0300 Subject: [PATCH] OSX: Fix lack of newlines in build messages --- osx_environment.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/osx_environment.sh b/osx_environment.sh index e30a0c00..12366c04 100644 --- a/osx_environment.sh +++ b/osx_environment.sh @@ -2,13 +2,13 @@ if [ ! $BARRIER_BUILD_ENV ]; then - printf "Modifying environment for Barrier build..." + printf "Modifying environment for Barrier build...\n" if command -v port; then - printf "Detected Macports" + printf "Detected Macports\n" if [ ! -d /opt/local/lib/cmake/Qt5 ]; then - printf "Please install qt5-qtbase port" + printf "Please install qt5-qtbase port\n" fi export BARRIER_BUILD_MACPORTS=1 export CMAKE_PREFIX_PATH="/opt/local/lib/cmake/Qt5:$CMAKE_PREFIX_PATH" @@ -17,7 +17,7 @@ if [ ! $BARRIER_BUILD_ENV ]; then export PKG_CONFIG_PATH="/opt/local/libexec/qt5/lib/pkgconfig:$PKG_CONFIG_PATH" elif command -v brew; then - printf "Detected Homebrew" + printf "Detected Homebrew\n" QT_PATH=$(brew --prefix qt) OPENSSL_PATH=$(brew --prefix openssl) @@ -28,7 +28,7 @@ if [ ! $BARRIER_BUILD_ENV ]; then export PKG_CONFIG_PATH="$OPENSSL_PATH/lib/pkgconfig:$PKG_CONFIG_PATH" else - printf "Neither Homebrew nor Macports is installed. Can't get dependency paths" + printf "Neither Homebrew nor Macports is installed. Can't get dependency paths\n" exit 1 fi