nu@0.86.0: Add arm64 variant (#5206)

* Use the full binary for nushell

* Update nu.json

---------

Co-authored-by: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com>
This commit is contained in:
Paul Moore 2023-10-24 07:45:10 +01:00 committed by GitHub
parent d82b6c5138
commit db3046ce66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,8 +5,12 @@
"license": "MIT", "license": "MIT",
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/nushell/nushell/releases/download/0.86.0/nu-0.86.0-x86_64-pc-windows-msvc.zip", "url": "https://github.com/nushell/nushell/releases/download/0.86.0/nu-0.86.0-x86_64-windows-msvc-full.zip",
"hash": "64e381a82289594e5cc2053cdd3c34e597affd2419acdd1645a983f9953aaba5" "hash": "2aa597719f3afb28d43fb4b718efb2fc8d00df02e106bbfa5e802bf9caf9d8e3"
},
"arm64": {
"url": "https://github.com/nushell/nushell/releases/download/0.86.0/nu-0.86.0-aarch64-windows-msvc-full.zip",
"hash": "713a5dcba063be48dd4a0da90e144a25fdf0c3bf695ef6737659e3189b602e83"
} }
}, },
"bin": "nu.exe", "bin": "nu.exe",
@ -16,7 +20,10 @@
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/nushell/nushell/releases/download/$version/nu-$version-x86_64-pc-windows-msvc.zip" "url": "https://github.com/nushell/nushell/releases/download/$version/nu-$version-x86_64-windows-msvc-full.zip"
},
"arm64": {
"url": "https://github.com/nushell/nushell/releases/download/$version/nu-$version-aarch64-windows-msvc-full.zip"
} }
} }
} }