From 00a8c85b956eb95767602f7df2fda6eb0f5effdf Mon Sep 17 00:00:00 2001 From: orbea Date: Mon, 13 Nov 2017 09:01:34 -0800 Subject: [PATCH] libretro-buildbot-recipe.sh: Set $BOT to . by default. --- libretro-buildbot-recipe.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index 14232852..80d9de0f 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -3,7 +3,8 @@ # ----- setup ----- # This will use an overridden value from the command-line if provided, otherwise just use the current date -LOGDATE=${LOGDATE:-`date +%Y-%m-%d`} +BOT="${BOT:-.}" +LOGDATE="${LOGDATE:-$(date +%Y-%m-%d)}" TMPDIR="${TMPDIR:-/tmp}" if [ -z "${1}" ]; then