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
Currently, Skyr requires passing the full name of the script to work.
If there is no script with the specified name, but there is a script with the same name and some extension, Skyr should run it. If there are many scripts, Skyr should fail because of ambiguity.
$ ls script
build.py
$ skyr # or 'skyr build'# runs build.py...
$ ls script
build.py
build.sh
$ skyr # or 'skyr build'
ERROR! Ambiguous scripts found:
- build.py
- build.sh
The text was updated successfully, but these errors were encountered:
Currently, Skyr requires passing the full name of the script to work.
If there is no script with the specified name, but there is a script with the same name and some extension, Skyr should run it. If there are many scripts, Skyr should fail because of ambiguity.
The text was updated successfully, but these errors were encountered: