I've just encountered a scenario:
- Using flake-file, write a flake with an input with
flake=false.
- Modify that input to have
flake=true and write the flake.
Expected behavior: the input in the lockfile now has flake=true (or at least not flake=false, whatever).
Actual behavior: after step two, the lockfile remains the same as it was before step two.
Turns out we shouldn't omit the flake attribute when it's true 🤷
I've just encountered a scenario:
flake=false.flake=trueand write the flake.Expected behavior: the input in the lockfile now has
flake=true(or at least notflake=false, whatever).Actual behavior: after step two, the lockfile remains the same as it was before step two.
Turns out we shouldn't omit the flake attribute when it's
true🤷