You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Prepends a date string in front of the Maven output.
# A workaround for http://jira.codehaus.org/browse/MNG-519 "Timestamps on messages"
[ -z"${AWK}" ] && AWK="$(which gawk 2>/dev/null)"|| AWK="$(which awk 2>/dev/null)"|| { echo"Error: Could not find AWK tool.";exit 1; }
"${AWK}"'BEGIN { print strftime("%Y-%m-%d %H:%M:%S"); }'2>&1> /dev/null || { echo"Error: your AWK version does not support strftime() function."&&exit 1; }