From 8723cf1aa8001925819b6badbf8e57a000e95005 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Thu, 29 Apr 2021 19:25:36 -0500 Subject: Revert "Delete batchfile; Fix compatibility with old pwsh" This reverts commit fd4da8649395f8b415fcc5580b884aa63c77916b. --- start.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'start.ps1') diff --git a/start.ps1 b/start.ps1 index be88a5e..a6f26dc 100644 --- a/start.ps1 +++ b/start.ps1 @@ -9,7 +9,7 @@ if ($h) { Write-Output "-w (Agent port start)" Write-Output "-h Display this message" } else { - Start-Job -scriptblock { python3 ./python/dotsandboxes/dotsandboxesserver.py $s} + python3 ./python/dotsandboxes/dotsandboxesserver.py $s & Write-Output "Web server running on http://127.0.0.1:$s" for ($i=1 ; $i -le 2 ; $i++) { Write-Output "Available Agents:" @@ -21,15 +21,15 @@ if ($h) { switch ($agent) { 1 { Write-Output "Random Agent running on ws://127.0.0.1:$w" - Start-Job -scriptblock {python3 ./python/dotsandboxes/dotsandboxesagent.py $w} + python3 ./python/dotsandboxes/dotsandboxesagent.py $w & } 2 { Write-Output "MCTS Agent running on ws://127.0.0.1:$w" - Start-Job -scriptblock { python3 ./python/agent_MCTS.py $w} + python3 ./python/agent_MCTS.py $w & } 3 { Write-Output "AB Agent running on ws://127.0.0.1:$w" - Start-Job -scriptblock { python3 ./python/agent_AB.py $w} + python3 ./python/agent_AB.py $w & } default {Write-Output "Invalid value. Program will now probably break."} } -- cgit v1.2.3