NicolasGoeddel

Results 86 comments of NicolasGoeddel

I guess the line in question is [this one](https://github.com/kubernetes-sigs/krew/blob/d2e660d5de19b5b446a3c1dfec220f7ce1c92f2d/internal/installation/move.go#L161C14-L161C26): ``` tmp, err := os.MkdirTemp("", "krew-temp-move") ``` Renaming/copying then happens [here](https://github.com/kubernetes-sigs/krew/blob/d2e660d5de19b5b446a3c1dfec220f7ce1c92f2d/internal/installation/move.go#L199C11-L199C17): ``` err = os.Rename(from, to) // Fallback for invalid cross-device...

The background is that a default `mktemp` CLI command usually sets `0700` for directories and `0600` for files. And it looks like golang does the same.

On my system it has not. I just installed it without setting `KREW_ROOT` before. ``` ngoeddel@stretched-b1:~/bin$ ll ~/.krew/store/krew/ total 12 drwxr-xr-x 3 ngoeddel ngoeddel 4096 Sep 13 16:38 ./ drwxr-xr-x...

Btw this is my system: ``` Distributor ID: Ubuntu Description: Ubuntu 20.04.4 LTS Release: 20.04 Codename: focal ```

Do you know when this will be solved and included in the next release?

Oh yes, I also found out that I can start Zoom calls, activate my camera and in general start applications using my Streamdeck while Gnome is showing me its lockscreen....

Seems related to https://github.com/Mailu/Mailu/issues/2716 or at least it could be fixed together.

Hi @Diman0, thank you for your answer. Yes, I am using Postgres as the database backend. If I use `--update` to merge the given configuration with the existing one I...