linux-china / jetbrains-just-plugin

JetBrains Just Command Runner Plugin
https://plugins.jetbrains.com/plugin/18658-just
Apache License 2.0
35 stars 6 forks source link

expressions in recipe dependencies not supported #13

Closed rivasdiaz closed 4 months ago

rivasdiaz commented 10 months ago

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.