From 1ecac84cf6af37ef80a0f38959b3eed19b8c9ee3 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Wed, 5 Feb 2014 18:50:24 +0100 Subject: [PATCH] Add initial version of cron script --- continuous/cron.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 continuous/cron.sh diff --git a/continuous/cron.sh b/continuous/cron.sh new file mode 100755 index 0000000..0e892d4 --- /dev/null +++ b/continuous/cron.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +cd $(dirname $0) + +mkdir -p logs + +NOW=$(date +%F_%R:%S) + +make -C steps > logs/${NOW}.log 2>&1 -- 2.39.2