Jump to content

ji-hwan

Member
  • Posts

    1
  • Joined

  • Last visited

ji-hwan's Achievements

Helping Hand

Helping Hand (3/5)

0

Reputation

  1. Thanks for great workflow! Let me add one know-how I found. In the "devnall"'s workflow, I usually fail to use the workflow because the ru "{query}" is not working (Although in my terminal it works well) So I edit that commend with following steps 0. After following upper step1 and step2 of mattheworiordan 1. In terminal, test the commend "ru "{query}"" works well $ ru my working and check the application of "Remember the milk" include the "my working" in the list 2. type the following commend $ which ru in my case ~ $ which ru /usr/local/bin/ru 3. change the ru in ru "{query}" in Run script with "/usr/local/bin/ru" ex) BEFORE ~~~ ru "{query}" if [ $? -ne 0 ]; then echo "FAILED to add task!! Check rumember is installed and authenticated" else echo "{query}" fi AFTER /usr/local/bin/ru "{query}" if [ $? -ne 0 ]; then echo "FAILED to add task!! Check rumember is installed and authenticated" else echo "{query}" fi
×
×
  • Create New...