From f0c357520ef0456ba2a7e5b4a877b58b2fafa5e8 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sat, 27 Feb 2021 12:26:40 +0100 Subject: [PATCH] Update installer to install restic 0.12.0 This fixes the backup script's usage of features not available in the previous version. --- install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.ps1 b/install.ps1 index ad590ea..a9d7865 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.9.6/restic_0.9.6_windows_amd64.zip" + $url = "https://github.com/restic/restic/releases/download/v0.12.0/restic_0.12.0_windows_amd64.zip" } else { - $url = "https://github.com/restic/restic/releases/download/v0.9.6/restic_0.9.6_windows_386.zip" + $url = "https://github.com/restic/restic/releases/download/v0.12.0/restic_0.12.0_windows_386.zip" } $output = Join-Path $InstallPath "restic.zip" Invoke-WebRequest -Uri $url -OutFile $output