You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Windows, if you have paket installed into your repo with dotnet tool install --tool-path ".paket", findPaketExecutable in Fake.DotNet.Paket/Paket.fs gets the incorrect paket path.
eg. C:\xxxx\.paket\.store\paket
Repro steps
dotnet tool install --tool-path ".paket"
Use Paket.restore/push/pack etc.
Expected behavior
The correct path of paket is found and used: C:\xxxx\.paket\paket.exe
Cause
This seems to happen because the current logic in findPaketExecutable prioritises finding a file/folder with the name "paket".
The text was updated successfully, but these errors were encountered:
Description
On Windows, if you have paket installed into your repo with
dotnet tool install --tool-path ".paket"
,findPaketExecutable
inFake.DotNet.Paket/Paket.fs
gets the incorrect paket path.eg.
C:\xxxx\.paket\.store\paket
Repro steps
dotnet tool install --tool-path ".paket"
Paket.restore/push/pack etc.
Expected behavior
The correct path of paket is found and used:
C:\xxxx\.paket\paket.exe
Cause
This seems to happen because the current logic in
findPaketExecutable
prioritises finding a file/folder with the name "paket".The text was updated successfully, but these errors were encountered: