Browse Source

Fixed Don't display empty messages in ee debug tail -f command

old-stable
Mitesh Shah 11 years ago
parent
commit
7c972102d9
  1. 4
      bin/easyengine

4
bin/easyengine

@ -523,11 +523,15 @@ elif [ "$EE_FIRST" = "debug" ]; then
# Debug stop on CTRL+C # Debug stop on CTRL+C
trap "ee_mod_debug_stop" EXIT trap "ee_mod_debug_stop" EXIT
if [ ! -z $EE_DEBUG_MSG ]; then
tail -f $EE_DEBUG_MSG tail -f $EE_DEBUG_MSG
fi
elif [ "$EE_DEBUG_INTERACTIVE" != "-i" ] && [ "$EE_DEBUG" != "--stop" ]; then elif [ "$EE_DEBUG_INTERACTIVE" != "-i" ] && [ "$EE_DEBUG" != "--stop" ]; then
if [ ! -z $EE_DEBUG_MSG ]; then
ee_lib_echo_info "tail -f $EE_DEBUG_MSG" ee_lib_echo_info "tail -f $EE_DEBUG_MSG"
fi fi
fi fi
fi
} }

Loading…
Cancel
Save