You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using roc as a shell scripting language with shebang (#!/usr/bin/env roc) at the top, passing args is annoying because the args aren't passed to the script, but to the roc executable. The workaround I have used is to do #!/usr/bin/env -S roc --, so all args are passed to the script, but it would be nice to not have to do this.
We should investigate if we can improve this to get a simplified shebang.
The text was updated successfully, but these errors were encountered:
From @KilianVounckx:
We should investigate if we can improve this to get a simplified shebang.
The text was updated successfully, but these errors were encountered: