diff --git a/scripts/Windows/Software/TobiiGameHub/GameHub.ahk b/scripts/Windows/Software/TobiiGameHub/GameHub.ahk index 07405890..3716a0c8 100644 --- a/scripts/Windows/Software/TobiiGameHub/GameHub.ahk +++ b/scripts/Windows/Software/TobiiGameHub/GameHub.ahk @@ -13,7 +13,7 @@ InstallGameHub() Sleep(10 * 1000) WinActivate(windowTitle) pid := WinGetPID() - Run("pwsh -c Stop-Process -Force ".pid) + Run("pwsh -c Stop-Process -Force " . pid) } SetWorkingDir(A_InitialWorkingDir) diff --git a/scripts/Windows/Software/TobiiGhost/Ghost.ahk b/scripts/Windows/Software/TobiiGhost/Ghost.ahk index 886a2835..fe6e8e8f 100644 --- a/scripts/Windows/Software/TobiiGhost/Ghost.ahk +++ b/scripts/Windows/Software/TobiiGhost/Ghost.ahk @@ -15,7 +15,7 @@ InstallGhost() Sleep(10 * 1000) WinActivate(windowTitle) pid := WinGetPID() - Run("pwsh -c Stop-Process -Force ".pid) + Run("pwsh -c Stop-Process -Force " . pid) } SetWorkingDir(A_InitialWorkingDir)