Skip to content
Snippets Groups Projects
Commit 9523c0f0 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

Merge branch '5127-detect-5xx-server-error' into 'master'

fix _echo

See merge request !8
parents db2f9314 f1a78db8
No related branches found
No related tags found
1 merge request!8fix _echo
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
# echo if there is an interactive shell # echo if there is an interactive shell
# params string(s) message to log # params string(s) message to log
function _echo(){ function _echo(){
test $isInteractiveShell && echo "$*" test "$isInteractiveShell" = "true" && echo "$*"
} }
# ====================================================================== # ======================================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment