From 8c6fd000e3b4e01d4d012c04048d163842f5d435 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 20 Sep 2020 23:18:49 +0200 Subject: [PATCH] build binaries --- .drone.jsonnet | 2 +- .drone.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index f23ddb2..8cd26df 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -102,7 +102,7 @@ local PipelineBuildBinaries = { image: 'alpine', commands: [ 'apk add upx', - 'find release/ -maxdepth 1 -executable -type f -exec upx {} ;', + 'find release/ -maxdepth 1 -executable -type f -exec upx {} \\;', 'ls -lh release/', ], }, diff --git a/.drone.yml b/.drone.yml index 653b714..363872d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -76,7 +76,7 @@ steps: image: alpine commands: - apk add upx - - find release/ -maxdepth 1 -executable -type f -exec upx {} ; + - find release/ -maxdepth 1 -executable -type f -exec upx {} \; - ls -lh release/ - name: checksum @@ -416,6 +416,6 @@ depends_on: --- kind: signature -hmac: e39c311c9112476acd3c980340474969a5ea27720867d85bce0dc63f5307569d +hmac: 14cc8682d5c27ee5548f9596f5778b82f331b5c2d5e2a816b874ae7682524335 ...