From 9295743ed967d3f200c8ee3ae650dacebfb60dce Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 22 Jun 2023 15:36:05 +0200 Subject: [PATCH] Fix incorrect git path --- winfs/Scripts/Startup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winfs/Scripts/Startup.ps1 b/winfs/Scripts/Startup.ps1 index 96acbf9..e4adcc2 100644 --- a/winfs/Scripts/Startup.ps1 +++ b/winfs/Scripts/Startup.ps1 @@ -1,6 +1,6 @@ $null = $env:WIN_COMPUTER_NAME; $null = $env:SETUP_SCRIPT_NAME; -& "X:\git\git.exe" clone https://git.nuth.ch/manuth/PortValhalla.git; +& "X:/git/bin/git.exe" clone https://git.nuth.ch/manuth/PortValhalla.git; Set-Location PortValhalla; pwsh;