terraform-switcher: Fix autoupdate urls (#6028)

This commit is contained in:
Steven Swor 2024-07-19 16:15:00 +10:00 committed by GitHub
parent 09f60a8aa1
commit e8688514b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,16 @@
{ {
"version": "0.13.1308", "version": "1.2.2",
"description": "A command line tool to switch between different versions of terraform", "description": "A command line tool to switch between different versions of terraform",
"homepage": "https://tfswitch.warrensbox.com", "homepage": "https://tfswitch.warrensbox.com",
"license": "MIT", "license": "MIT",
"architecture": { "architecture": {
"32bit": { "32bit": {
"url": "https://github.com/warrensbox/terraform-switcher/releases/download/0.13.1308/terraform-switcher_0.13.1308_windows_386.zip", "url": "https://github.com/warrensbox/terraform-switcher/releases/download/v1.2.2/terraform-switcher_v1.2.2_windows_386.tar.gz",
"hash": "0fb7c7a5b58a6982b3216a0d1a1769577a2232fa3df5c795692c29b71e592bd6" "hash": "40bd37acf0525c72ede3ce47dc213c025c4db095ee3db6fcbd3ab086b5426852"
}, },
"64bit": { "64bit": {
"url": "https://github.com/warrensbox/terraform-switcher/releases/download/0.13.1308/terraform-switcher_0.13.1308_windows_amd64.zip", "url": "https://github.com/warrensbox/terraform-switcher/releases/download/v1.2.2/terraform-switcher_v1.2.2_windows_amd64.tar.gz",
"hash": "2c20cafbd6be81f6ed675522bbf05abd5e4b763ccefbd6bdd33e15a4604beb82" "hash": "4977150c17f80c5a7dc0607a38c7375965e1cd6f83d1154879f5295481007920"
} }
}, },
"bin": "tfswitch.exe", "bin": "tfswitch.exe",
@ -20,10 +20,10 @@
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"32bit": { "32bit": {
"url": "https://github.com/warrensbox/terraform-switcher/releases/download/$version/terraform-switcher_$version_windows_386.zip" "url": "https://github.com/warrensbox/terraform-switcher/releases/download/v$version/terraform-switcher_v$version_windows_386.tar.gz"
}, },
"64bit": { "64bit": {
"url": "https://github.com/warrensbox/terraform-switcher/releases/download/$version/terraform-switcher_$version_windows_amd64.zip" "url": "https://github.com/warrensbox/terraform-switcher/releases/download/v$version/terraform-switcher_v$version_windows_amd64.tar.gz"
} }
} }
} }