Amin Ya

Results 1114 comments of Amin Ya

I think I found the issue. The problem is that $Path, $TMP, and $TEMP environment variables are set inside GitHub Actions (due to msys64 installation). Unsetting these fixes this error:...

I tried your suggestions, but the issue was not fixed. Not sure what to do. I merged some patches for now so we are one step closer to make this...

I wrote this: ```jl Base.convert(PosixPath, x::WindowsPath) = PosixPath(repr(x)[3:end-1]) PosixPath(x::WindowsPath) = Base.convert(PosixPath, x::WindowsPath) ``` Not the best method but works.

Nicer way 🚀 : Anyone who is working with paths, use this function to make your path good. ```julia using FilePathsBase GoodPath(inp::String) = inp |> Path |> _GoodPath |> string...

> > > Hmmm, might need more context on your use case. Why are you wanting to convert windows to posix paths? My first instinct is that we could support...

@DustinBrett could you publish this on npm? This project seems unmaintained.

I still get this issue on Windows (other platforms work fine). There is seems to be a missing file when running `pnpm rebuild` https://github.com/atom-community/papm/pull/9 https://github.com/atom-community/papm/pull/9/checks?check_run_id=3276988522#step:6:137 This is inside GitHub Actions,...

Yes. I was loose with my wording. I am proposing to symlink the top-level folder to the actual files. Currently, the folders are symlinked and inside the folder, there are...

Maybe, I am not explaining myself correctly. My point is that there should be only "one indirection", and that is the folder symlink. Currently, even inside the symlinked folder there...

I just use `pnpm i`. Here is an example: ![image](https://user-images.githubusercontent.com/16418197/106218277-a40c6400-619c-11eb-93a3-c4d6b0d71268.png) package.json inside the folder is hardlinked: ![image](https://user-images.githubusercontent.com/16418197/106218351-c1d9c900-619c-11eb-815c-357eb4ce1a7d.png)