solenv/bin/unittest-failed.sh |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1e2786ac6d51838308c27a2cb84ce8ad9acd59c9
Author: Riccardo Magliocchetti <riccardo.magliocche...@gmail.com>
Date:   Fri Dec 19 11:43:19 2014 +0100

    solenv: fix bashism in unittest-failed.sh
    
    Change-Id: If030cd711cbb04fd622a4fd5723b6c66aac28a98
    Reviewed-on: https://gerrit.libreoffice.org/13546
    Reviewed-by: Riccardo Magliocchetti <riccardo.magliocche...@gmail.com>
    Tested-by: Riccardo Magliocchetti <riccardo.magliocche...@gmail.com>

diff --git a/solenv/bin/unittest-failed.sh b/solenv/bin/unittest-failed.sh
index 277c908..f898db9 100755
--- a/solenv/bin/unittest-failed.sh
+++ b/solenv/bin/unittest-failed.sh
@@ -23,11 +23,11 @@ Error: a unit test failed, please do one of:
 
 export DEBUGCPPUNIT=TRUE            # for exception catching
 EOF
-if [ "$3" == "WNT" ]; then
+if [ "$3" = "WNT" ]; then
 cat << EOF
 export CPPUNITTRACE="\"[full path to devenv.exe]\" /debugexe" # for 
interactive debugging in Visual Studio
 EOF
-elif [ "$3" == "MACOSX" ]; then
+elif [ "$3" = "MACOSX" ]; then
 cat << EOF
 export CPPUNITTRACE="lldb --" # for interactive debugging on OSX
 EOF
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to