Fix play path in scripts

This commit is contained in:
Thibault Duplessis 2012-04-24 23:19:48 +02:00
parent ae0ea3ecf3
commit 0a0ad2b966
8 changed files with 2 additions and 8 deletions

View file

@ -1,5 +1,7 @@
<?php
$play = "/home/Play20/play";
function show_run($text, $command, $catch = false)
{
echo "\n* $text\n$command\n";

View file

@ -4,7 +4,6 @@
require_once __DIR__.'/base_script.php';
$testurl="http://en.lichess.org";
$play = "/home/play-2.0/play";
$log = "logs/play.log";
$search = "AskTimeoutException";
echo "Watching $log";

View file

@ -4,7 +4,6 @@
require_once __DIR__.'/base_script.php';
$testurl="http://en.lichess.org";
$play = "/home/play-2.0/play";
show_run("Stage", "$play compile stage");
show_run_catch("Stop", "$play stop");

View file

@ -4,7 +4,6 @@
require_once __DIR__.'/base_script.php';
$testurl="http://en.lichess.org";
$play = "/home/play-2.0/play";
show_run("Stage", "$play clean compile stage");
show_run_catch("Stop", "$play stop");

View file

@ -4,7 +4,6 @@
require_once __DIR__.'/base_script.php';
$testurl="http://en.lichess.org";
$play = "/home/play-2.0/play";
show_run_catch("Stop", "$play stop");
show_run("Start", "./target/start > logs/play.log &");

View file

@ -4,7 +4,6 @@
require_once __DIR__.'/base_script.php';
$testurl="http://en.lichess.org";
$play = "/home/play-2.0/play";
$log = "logs/play.log";
$search = "AskTimeoutException";
$delay = 3600;

View file

@ -4,7 +4,6 @@
require_once __DIR__.'/base_script.php';
$testurl="http://en.lichess.org";
$play = "/home/play-2.0/play";
show_run("Start", "./target/start > logs/play.log &");

View file

@ -3,6 +3,4 @@
require_once __DIR__.'/base_script.php';
$play = "/home/play-2.0/play";
show_run_catch("Stop", "$play stop");