From c9409d9adaf5a688fd030b3f4d4f63d1b3769d15 Mon Sep 17 00:00:00 2001 From: Martien Oranje Date: Tue, 26 Mar 2019 22:01:08 +0100 Subject: [PATCH] fix(project): failing node.js check --- dist/workflow/info.plist | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dist/workflow/info.plist b/dist/workflow/info.plist index 93bb193b..013b25ab 100644 --- a/dist/workflow/info.plist +++ b/dist/workflow/info.plist @@ -165,6 +165,7 @@ node alfred-workflow-todoist.js remove "{query}" export PATH="$PATH:/usr/local/bin:/usr/bin" if which node > /dev/null; then + : else echo "You need to have node (8.5 or up) installed for this workflow to work." echo "Have a look at the docs:" @@ -262,6 +263,7 @@ node alfred-workflow-todoist.js submit "{query}" export PATH="$PATH:/usr/local/bin:/usr/bin" if which node > /dev/null; then + : else echo "You need to have node (8.5 or up) installed for this workflow to work." echo "Have a look at the docs:" @@ -378,6 +380,7 @@ export PATH="$PATH:/usr/local/bin:/usr/bin" # IDEA: should return a list with options (eg: settings, (check for) update, install, refresh_cache) if which node > /dev/null; then + : else echo "You need to have node (8.5 or up) installed for this workflow to work." echo "Have a look at the docs:"