From 71e62541a1535d38e177e1d12dc983d3198a9c63 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 12 Feb 2024 21:56:25 +0100 Subject: [PATCH] fix(ci): escape bash script for drone variable substitution --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9a0558f9c..1b8db04db 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1220,7 +1220,7 @@ steps: pull: true commands: - cd desktop/dist - - bash -c 'for file in Vikunja*; do suffix=".${file##*.}"; if [[ ! -d $file ]]; then mv "$file" "Vikunja-Desktop-unstable${suffix}"; fi; done' + - bash -c 'for file in Vikunja*; do suffix=".$${file##*.}"; if [[ ! -d $file ]]; then mv "$file" "Vikunja-Desktop-unstable$${suffix}"; fi; done' depends_on: - build when: @@ -1389,6 +1389,6 @@ steps: - failure --- kind: signature -hmac: 2a04bdccf78b768db5ca89bf2bfa472ade15d8499b976b47deb52d93400b38a2 +hmac: aa9bd51fc7d73686ee169060dcb4d6540214825a0d5134035f477a97f77dd24d ...