We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4b9b0 commit bb5fc1eCopy full SHA for bb5fc1e
build-scripts/rebuild-nqplua.sh
@@ -4,6 +4,6 @@ set -e
4
echo -e "\n\nNew nqplua build"
5
date
6
cd nqplua/6model
7
-git pull
+echo |git pull
8
cd lua/compiler
9
make
evalbot.pl
@@ -268,8 +268,9 @@ package Evalbot;
268
}
269
} elsif ($message =~ m/\Aevalbot\s*rebuild\s+(\w+)/) {
270
my $name = "$1";
271
+ # XXX We want better integration so that this can go to the right place
272
if (EvalbotExecuter::try_lock($name)) {
- system "./build.pl $name &";
273
+ system "(./build.pl $name; echo 'freenode #perl6 Rebuild of $name complete.' >> /home/p6eval/dalek-queue) &";
274
return "OK (started asynchronously)";
275
} else {
276
return "NOT OK (maybe a rebuild is already in progress?)";
0 commit comments