[Libreoffice-commits] core.git: solenv/bin

Riccardo Magliocchetti riccardo.magliocchetti at gmail.com
Fri Dec 19 05:40:19 PST 2014


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

New commits:
commit 1e2786ac6d51838308c27a2cb84ce8ad9acd59c9
Author: Riccardo Magliocchetti <riccardo.magliocchetti at 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.magliocchetti at gmail.com>
    Tested-by: Riccardo Magliocchetti <riccardo.magliocchetti at 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


More information about the Libreoffice-commits mailing list