From b86191b76851fe68984af3275ca13a1fa575e95c Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 18 Jul 2023 00:16:37 +0200 Subject: [PATCH] Fix malformed string concatenation --- scripts/Windows/Software/TobiiGameHub/GameHub.ahk | 2 +- scripts/Windows/Software/TobiiGhost/Ghost.ahk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)