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
I just upgraded to run version v0.11.0 on Mac Ventura 13.1 installed with brew and started getting errors for command names containing a dash (-) or underscore (_).
If I am reading the documentation correctly this should work and did in previous versions.
$ run version
run v0.11.0
With the following sample configuration:
# Set default shell for all actions
.SHELL = bash
EXPORT RUNFILE := "${.RUNFILE}"
## Check configuration
config-check:
echo "RUNFILE: $RUNFILE"
I now get the following error:
$ run list
run: Runfile:7.1: expecting runfile statement
If I remove the dash:
# Set default shell for all actions
.SHELL = bash
EXPORT RUNFILE := "${.RUNFILE}"
## Check configuration
configcheck:
echo "RUNFILE: $RUNFILE"
I get the correct result:
$ run list
Commands:
list (builtin) List available commands
help (builtin) Show help for a command
version (builtin) Show run version
configcheck Check configuration
The text was updated successfully, but these errors were encountered:
I just upgraded to run version v0.11.0 on Mac Ventura 13.1 installed with brew and started getting errors for command names containing a dash (-) or underscore (_).
If I am reading the documentation correctly this should work and did in previous versions.
With the following sample configuration:
I now get the following error:
If I remove the dash:
I get the correct result:
The text was updated successfully, but these errors were encountered: