update script now works

This commit is contained in:
Janis
2022-10-29 15:41:22 +02:00
parent 493e85684d
commit 1fbd632a30
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
{
"version": "v0.0.2"
"version": "v0.0.3"
}

View File

@@ -40,7 +40,7 @@ if ($newestVersionString -ne "") {
Invoke-WebRequest -Uri "https://github.com/DerTyp876/obs-twitch-camera-frame/archive/refs/tags/$newestVersionString.zip" -OutFile "./temp/$newestVersionString.zip"
Write-Output "Extracting archive..."
Expand-Archive -Path "./temp/$newestVersionString.zip" -DestinationPath "./temp/"
Get-ChildItem -Path "./temp/ts5-obs-overlay-$($newestVersionString -replace 'v')" -Recurse | Move-Item -Destination "./"
Get-ChildItem -Path "./temp/obs-twitch-camera-frame-$($newestVersionString -replace 'v')" -Recurse | Move-Item -Destination "./"
Remove-Item "./temp" -Recurse -Force -Confirm