oletf
oletf
Here's more info if anyone wants to dig in deeper : `Callstack`: ``` KernelBase.dll!RaiseException() (Unknown Source:0) combase.dll!SendReport(HRESULT error, unsigned int cchMax, const wchar_t * message, unsigned short pSid, void *...
I wanted to have it working some time ago, had to use a temporary file, don't even remember what it does but it works, and I've been using it since...
The lua script I use and have shared [above](https://github.com/Canop/broot/issues/941#issuecomment-2355769788) was just me trying to port the [broot bash function](https://github.com/Canop/broot/blob/2082bb57ece9eb09e60cab489a8c8dfc18891024/src/shell_install/bash.rs#L42C1-L54C2) to clink's lua, to have it work at least in Windows...
still having this same error on 0.6.2
during my exploration on #3688, I realized that the shortcut created by nsis (and probably msi as well) don't work anymore after #3482, since the shortcut created by the nsis...
alright ! I found the culprit for the shortcut problem, it was on the [executable name here](https://github.com/DioxusLabs/dioxus/blob/68ca4c3289f3108ffdd6b8e0ad187071d10a110a/packages/cli/src/cli/bundle.rs#L157), #3482 helped a lot! The shortcut, the uninstaller not deleting the executable, as...
[This fork](https://github.com/KevinYouu/tailwind-raw-reorder) brought some updates for Tailwind 4 support (extension is already on vscode marketplace), but I don't know if they plan to PR it back here, as they seem...
Ok I think I got the source of the problem : - BSD case has - [`ioctl_num_type` defined as either `c_int` or `c_ulong`](https://github.com/nix-rust/nix/blob/a72936dbac7323837160a3de0572e13ff26dc816/src/sys/ioctl/bsd.rs#L2-L8) - [`ioctl_param_type` defined as `c_int`](https://github.com/nix-rust/nix/blob/a72936dbac7323837160a3de0572e13ff26dc816/src/sys/ioctl/bsd.rs#L12) - [`ioctl_write_int`](https://github.com/nix-rust/nix/blob/a72936dbac7323837160a3de0572e13ff26dc816/src/sys/ioctl/mod.rs#L531)...
I had completely forgotten about this issue ! In the end I've just changed my C driver code to `_IOW(IOCTL_MAGIC, NR_IO, u32)` to keep using `ioctl_write_int!()` and to be sure...