summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2021-08-27 09:33:11 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2021-08-27 09:33:11 +0100
commit1f3b00602751ffe56d089cb215c8d6398e1cd786 (patch)
tree7b9e1c157acd0aa7b7112e83281c69d795a785fc
parent58c0b4798f8958d79848d427a291ad12ac2b7e9f (diff)
patchwork: Run the bot twice
The bot will perform two separate sets of tasks. One that runs only when the tree is updated, and one that only runs when the tree is not updated. That's a bit awkward, as I want both tasks to run. Run the bot twice, so that it can process both sets of tasks on any execution from the daily script. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rwxr-xr-x03-update-patchwork.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/03-update-patchwork.sh b/03-update-patchwork.sh
index bc081be..559ddd5 100755
--- a/03-update-patchwork.sh
+++ b/03-update-patchwork.sh
@@ -10,6 +10,7 @@ BOT=$(pwd)/scripts/git-patchwork-bot.py
logfile=$(log_filename $ID)
$BOT -v -r $LIBCAMERA/.git -l $logfile > $logfile.stdout.log 2> $logfile.stderr.log
+$BOT -v -r $LIBCAMERA/.git -l $logfile.2 >> $logfile.stdout.log 2>> $logfile.stderr.log
pass_fail $? "Run patchwork bot"