From f5a8ad3386fd35902fe53fccd27d856b1f617e48 Mon Sep 17 00:00:00 2001 From: jhot Date: Wed, 1 Nov 2023 08:51:08 -0600 Subject: [PATCH] Didn't need that dollar sign --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 29b3c80..dce0704 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,7 +6,7 @@ steps: - name: build image: debian:12 commands: - - $TAG=$${DRONE_TAG:-$DRONE_BRANCH} # set tag to tag name (if applicable) or branch name + - TAG=$${DRONE_TAG:-$DRONE_BRANCH} # set tag to tag name (if applicable) or branch name - apt-get update && apt-get install -y curl # install dependencies from apt - curl -fsSL https://get.docker.com -o get-docker.sh # install docker - sh ./get-docker.sh