From 94f37e40c01299644eb6a56200849517746dc188 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 27 Sep 2023 12:06:24 +0200 Subject: [PATCH] Fix creation of winiso --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index 6cd1620..6b9cd98 100755 --- a/deploy.sh +++ b/deploy.sh @@ -28,7 +28,7 @@ else setupLabel="winiso"; intelNetworkArchive="./$buildDir/intelNetwork.zip"; marvellNetworkArchive="./$buildDir/marvellNetwork.zip"; - gitArchive="$(realpath "./$buildDir/git.msi")"; + gitArchive="$(realpath -m "./$buildDir/git.msi")"; pwshArchive="./$buildDir/pwsh.zip"; editionField="Edition ID"; @@ -52,7 +52,7 @@ else if [ ! -f "$pwshArchive" ] then - curl -L "https://github.com/PowerShell/PowerShell/releases/download/v7.3.4/PowerShell-7.3.4-win-x64.zip" -o "$pwshArchive"; + curl -L "https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/PowerShell-7.3.7-win-x64.zip" -o "$pwshArchive"; fi; mkdir -p "$overlayDir/drivers";