mikaelbr/gulp-notify

Fail when message starting with something like ( or [

Opened this issue · 2 comments

It seems that gulp-notify fail completely (with pipe stuck) when the message start with a string that is not a-zA-Z0-9.

Example
gulp.src('./')
    .pipe(notify({
        title: '✖ Error',
        message: '(Error) Lorem ipsum'
    }));

What OS are you running? Is there any error ouput?

I'm on OS X 10.10.2. There is no output and the notification doesn't show.

I see that it fail too in the title (using one of ()[]{} at start). In that case, the title displayed is Terminal.

I see also that using one of these ✘☁♞ will work...

'hope that helps!