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
When I try to install latest on an m1 mac running Ventura 13.1, it fails to install.
asdf install powershell-core latest
* Downloading powershell-core release 7.3.1...
chmod: /Users/jojeli/.asdf/installs/powershell-core/7.3.1/pwsh: No such file or directory
asdf-powershell-core: Expected /Users/jojeli/.asdf/installs/powershell-core/7.3.1/pwsh to be executable.
asdf-powershell-core: An error ocurred while installing powershell-core 7.3.1.
I ended up fixing this after the "installation was successful" by replacing the entire 7.3.1 directory:
rm -rf $(asdf where powershell-core)
mkdir -p $(asdf where powershell-core)
tar -xzf ~/Downloads/powershell-7.3.1-osx-arm64.tar.gz -C $(asdf where powershell-core)
chmod +x $(asdf where powershell-core)/pwsh
I still had to hit Allow Anyway for each of the dylib files, but after that, pwsh came up.
I noticed that earlier this week on WSL and it seems like something changed in the artifact paths inside the github release. Thanks for the report. I'll update when it's fixed.
When I try to install latest on an
m1
mac runningVentura 13.1
, it fails to install.I tracked it down to the extract process:
asdf-powershell-core/bin/download
Line 20 in 0ce7dad
if you drop
--strip-components=1
then, it is able to install.Now, when I run
pwsh
, macos pops up with a lot of messages to allow*.dylib
files. After I allow all those, now I get this error:The text was updated successfully, but these errors were encountered: