Fix malformed string concatenation

This commit is contained in:
Manuel Thalmann 2023-07-18 00:16:37 +02:00
parent 30f3a829cf
commit b86191b768
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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)