Casey Rodarmor
Casey Rodarmor
I think the best way to fix this is, when running a command, if it returns an error and that error is file not found, check if the working directory...
This is definitely desirable! I like the syntax you proposed, i.e.: ``` buildpath(s) := build_dir + "/" + s + "/" + file_name ``` One thing that strikes me is...
>Obviously this is a pretty big change so I expect to run into other issues during implementation, but how do you feel about this general outline? I'm definitely open to...
@vimota I definitely agree that would be nice. `--help` is a valid recipe argument though, so we would have to see that the path provided on the command line pointed...
Just released [1.40](https://github.com/casey/just/releases/tag/1.40.0). Aliases can now target recipes in submodules: ``` mod foo alias baz := foo::bar ```
Yah I think looking at the implementation, and how much simpler `just --list --group FOO` would be made me change me ind.
Sorry to flip flop!
Echoing what @laniakea64 said, I can definitely see the usefulness of running dependencies first, but I think the current behavior is the correct default, in case dependencies are expensive or...
Nice! Some feedback: - This initial PR should be as simple as possible, so it's easy to review and land, and additional features can be added in follow-up PRs. So...
> I still think it could be better to have an explicit "rerun recipe if the value of this thing changes" function so the user can determine what is important,...