Fix malformed string concatenation
This commit is contained in:
parent
7c15065cf3
commit
0609c76bdc
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ InstallGameHub()
|
||||||
Sleep(10 * 1000)
|
Sleep(10 * 1000)
|
||||||
WinActivate(windowTitle)
|
WinActivate(windowTitle)
|
||||||
pid := WinGetPID()
|
pid := WinGetPID()
|
||||||
Run("pwsh -c Stop-Process -Force ".pid)
|
Run("pwsh -c Stop-Process -Force " . pid)
|
||||||
}
|
}
|
||||||
|
|
||||||
SetWorkingDir(A_InitialWorkingDir)
|
SetWorkingDir(A_InitialWorkingDir)
|
||||||
|
|
|
@ -15,7 +15,7 @@ InstallGhost()
|
||||||
Sleep(10 * 1000)
|
Sleep(10 * 1000)
|
||||||
WinActivate(windowTitle)
|
WinActivate(windowTitle)
|
||||||
pid := WinGetPID()
|
pid := WinGetPID()
|
||||||
Run("pwsh -c Stop-Process -Force ".pid)
|
Run("pwsh -c Stop-Process -Force " . pid)
|
||||||
}
|
}
|
||||||
|
|
||||||
SetWorkingDir(A_InitialWorkingDir)
|
SetWorkingDir(A_InitialWorkingDir)
|
||||||
|
|
Loading…
Reference in a new issue