Remove redundant commands

This commit is contained in:
Manuel Thalmann 2023-07-17 02:47:57 +02:00
parent 8d179b0b56
commit 5384316829

View file

@ -18,7 +18,6 @@ Invoke-WebRequest "https://files.update.oem.tobii.com/Ghost/TobiiGhost.1.14.1-Se
Write-Information "Running Tobii Ghost installer";
Start-Process -Wait -FilePath "$PSScriptRoot/Ghost.ahk";
Stop-Process -Force "TobiiGhost.exe";
Write-Host "Installing Tobii Game Hub";
Write-Information "Downloading Tobii Game Hub installer";
@ -26,7 +25,6 @@ Invoke-WebRequest "https://files.update.oem.tobii.com/GameHub/TobiiGameHub.3.0.1
Write-Information "Running Tobii Game Hub installer";
Start-Process -Wait -FilePath "$PSScriptRoot/GameHub.ahk";
Stop-Process -Force "TobiiGameHub.exe";
Pop-Location;
Remove-Item -Recurse $tempDir;