From 7d8ff976f3fd35fcf546bfd4e7c406f01f6cacb1 Mon Sep 17 00:00:00 2001 From: radius Date: Tue, 13 Oct 2015 18:41:42 -0500 Subject: [PATCH] clean up script --- libretro-buildbot-recipe.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index 85450a4d..8fdb33a3 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -197,10 +197,10 @@ cd "${BASE_DIR}" # logs to alcarobot buildbot_log() { - echo MSG: $MESSAGE - MESSAGE=`echo -e $1` + echo === BUILDBOT MSG: $MESSAGE === + MESSAGE=`echo -e $1` - HASH=`echo -n "$MESSAGE" | openssl sha1 -hmac $SIG | cut -f 2 -d " "` + HASH=`echo -n "$MESSAGE" | openssl sha1 -hmac $SIG | cut -f 2` curl --max-time 30 --data "message=$MESSAGE&sign=$HASH" $LOGURL }