From 7f520e3995f7d8e4cf068c04e35fb0c9e52ea195 Mon Sep 17 00:00:00 2001 From: Kevin Woley Date: Sat, 9 Nov 2024 11:12:09 -0800 Subject: [PATCH] update install script to restic version 0.17.3 --- install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.ps1 b/install.ps1 index 85cbaf0..3cddaec 100644 --- a/install.ps1 +++ b/install.ps1 @@ -5,10 +5,10 @@ if(-not (Test-Path $ResticExe)) { $url = $null if([Environment]::Is64BitOperatingSystem){ - $url = "https://github.com/restic/restic/releases/download/v0.15.0/restic_0.15.0_windows_amd64.zip" + $url = "https://github.com/restic/restic/releases/download/v0.17.3/restic_0.17.3_windows_amd64.zip" } else { - $url = "https://github.com/restic/restic/releases/download/v0.15.0/restic_0.15.0_windows_386.zip" + $url = "https://github.com/restic/restic/releases/download/v0.17.3/restic_0.17.3_windows_386.zip" } $output = Join-Path $InstallPath "restic.zip" Invoke-WebRequest -Uri $url -OutFile $output