linux-china / jetbrains-just-plugin

JetBrains Just Command Runner Plugin

Home Page:https://plugins.jetbrains.com/plugin/18658-just

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

expressions in recipe dependencies not supported

rivasdiaz opened this issue · comments

Hi, thanks for this awesome plugin.

I discovered if I add an expression on a recipe dependency, the plugin will flag it as an error, even though the just tool accepts it.

Example:

hello WHO='world': (echo 'Hello '+WHO)

echo MSG:
    echo '{{MSG}}'

The plugin will flag the + in the hello recipe as an error. I can execute just hello and it will be successfully executed.