stamp: remove non used multiple lines error messages

This commit is contained in:
Damien Tardy-Panis 2016-10-07 17:41:53 +02:00
parent 4aec48c85c
commit a118f306b1

View file

@ -22,7 +22,7 @@ EOF
error() {
if [[ -n "$1" ]]; then
local msg=$( echo "error: $1" | sed 's/\\n/\\n /g' )
local msg=$( echo "error: $1" )
echo -e "${msg}" >&2
fi
usage