matryer / xbar

Put the output from any script or program into your macOS Menu Bar (the BitBar reboot)
https://xbarapp.com
MIT License
17.49k stars 643 forks source link

terminal=false does not run make-call #825

Open bicaluv opened 2 years ago

bicaluv commented 2 years ago

Hi! I made a xbar ruby file containing the following lines:

call = "shell=make param1=\"-C /Users/xxx/Documents/proj\" param2=sync-with-origin-and-deploy terminal=true refresh=true"
puts "sync and build| #{call}"

When I run the "sync and build" command, everything works fine and I can see my make-call run in the shell.
But when using terminal=false nothing happens and the make-call is not executed.
This is also true, when trying other shell-commands, like this one: call = "shell=open param1=\"'/Applications/Visual Studio Code.app'\" param2=\"--args\" param3=\"/Users/xxx/Documents/proj\" terminal=false". am I missing something?