mashlol / notify

Notify your devices from the terminal

Home Page:https://mashlol.github.io/notify/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wrong example

durka opened this issue · comments

The readme says cmd || notify will fire the notification whether or not the command succeeds, but actually it only fires if the command returns 1 (which by convention means failure).

$ true || echo notify
$ false || echo notify
notify
$

Ah whoops, we really want semi-colon then I believe.

Fixed everywhere except the Android app, will get to that later.