From f838093f7daaee839e3f0b1a665681a39b2c726e Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Fri, 24 Sep 2021 20:22:14 +0000 Subject: Fix CI test in sh upload script --- public/templates/sh.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/templates/sh.template b/public/templates/sh.template index ebb78f0..049b0b2 100644 --- a/public/templates/sh.template +++ b/public/templates/sh.template @@ -34,7 +34,7 @@ say verbose_say "Gathering report information . . ." -if [ "$CI" = "drone" ]; then +if [ "$CI" = "true" ] && [ "$DRONE" = "true" ] ; then verbose_say "Drone CI discovered - using Drone report info" commit="$DRONE_COMMIT" branch="$DRONE_BRANCH" -- cgit