From 6ceef5abd3bef3f6b92119f3ebc8904298f20132 Mon Sep 17 00:00:00 2001 From: Michael Tyson Date: Wed, 8 Jan 2020 16:48:35 -0500 Subject: [PATCH] nu@0.8.0: Fix extract_dir (#719) - Closes #718 --- bucket/nu.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/bucket/nu.json b/bucket/nu.json index a8d529b291..4a0b4cb356 100644 --- a/bucket/nu.json +++ b/bucket/nu.json @@ -7,7 +7,7 @@ "64bit": { "url": "https://github.com/nushell/nushell/releases/download/0.8.0/nu_0_8_0_windows.zip", "hash": "7e34ede344f979130517ae5d2507c71aac449fb67aa4601b09bb252a41efa95b", - "extract_dir": "nu_0_7_0_windows\\nushell_0_7_0", + "extract_dir": "nu_0_8_0_windows\\nushell_0_8_0", "installer": { "script": [ "New-Item \"$dir\\Plugins\" -ItemType Directory | Out-Null", @@ -23,7 +23,11 @@ "regex": "([\\d.]+) Release" }, "autoupdate": { - "url": "https://github.com/nushell/nushell/releases/download/$version/nu_$underscoreVersion_windows.zip", - "extract_dir": "nu_$underscoreVersion_windows\\nushell_$underscoreVersion" + "architecture": { + "64bit": { + "url": "https://github.com/nushell/nushell/releases/download/$version/nu_$underscoreVersion_windows.zip", + "extract_dir": "nu_$underscoreVersion_windows\\nushell_$underscoreVersion" + } + } } }