summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
5ef33b0)
Reference: Numerical -eq does not dereference in [..]. Expand or use
string operator. https://github.com/koalaman/shellcheck/wiki/SC2170
# License: GPLv3+
# Ref./Attrib:
# License: GPLv3+
# Ref./Attrib:
- if [ "$OPTION_VERBOSE" == "true" ]; then
+ if [ "$OPTION_VERBOSE" = "true" ]; then
FUNCTION_TIME=$(date --iso-8601=ns); # Save current time in nano seconds.
echoerr "[$FUNCTION_TIME] ""$@"; # Display argument text.
fi
FUNCTION_TIME=$(date --iso-8601=ns); # Save current time in nano seconds.
echoerr "[$FUNCTION_TIME] ""$@"; # Display argument text.
fi