iTrooz
iTrooz
That's weird, it seems like your boot entry ID wasn't kept in the boot order. Did you reboot between these two commands ? In any case, this shouldn't happen (I...
If you want to try again and debug this problem, try setting RUST_LOG to debug or trace and use the latest nightly: https://github.com/iTrooz/efivar-rs/actions/runs/15982165792 You should be able to use it...
No problem ! Thanks for helping me troubleshooting
I'm waiting for initial feature approval before adding tests/making a PR to the docs repo
@shtripat @harshavardhana Hello ! Would it be possible to review this PR please ? Thank you
We could do that, but but the `--json | jq -s 'sort_by(.size) | .[] | {key, size}'` part is a bit cumbersome (I personally wouldn't be able to pull it...
My use case was "I want to see what the biggest files are in this bucket" (not in the context of a script, purely me out of curiosity) Maybe there...
Another thing to note: `config::File::new(".env", FileFormat::Ini)` does not work either because it skips normalizing the casing (.env contains uppercase variables, and I think the library expects lower case ones, unlike...
I think the .env file should be able to handle quotes (`SERVER_URL="http://localhost:9000"` Apart from that and converting to lower case, I don't think any special treatment is required Env files...
I think we should detect files like `.env.prod` (note that the extension is not .env) as env files, because other ecosystems tend to name them like this (e.g. https://nextjs.org/docs/pages/guides/environment-variables#test-environment-variables) So...