eclipse-bash-editor
eclipse-bash-editor copied to clipboard
Bash parser shows errors for working script
Situation
function eventNotExists(){
if [[ "$FUNCTION_RESULT_TRUE" = ""]]; then
exit 100
fi
}
Outcome:
First error:
Multiple markers at this line
- This curly brace is not closed. So function 'eventNotExists' is not valid.
- It seems this opening bracket is missing a closing one.
Second error:
This 'if' statement is not correct closed. A 'fi' is missing
Wanted
No error shall be mentioned...
Solution
Fix parser bug