From d275ea05a59456ac8d05cfa5e5b3a04afe4b4a92 Mon Sep 17 00:00:00 2001 From: bergquist Date: Wed, 3 Oct 2018 16:47:37 +0200 Subject: [PATCH] build: fix for invalid pathing for release publisher (cherry picked from commit 96a0c9c56d6bedefa3f6920ad16c21b897d45b75) --- scripts/build/publish.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build/publish.sh b/scripts/build/publish.sh index feaec604c0d..b3fab180ac9 100755 --- a/scripts/build/publish.sh +++ b/scripts/build/publish.sh @@ -1,4 +1,4 @@ -#/bin/bash +#/bin/sh # no relation to publish.go @@ -7,7 +7,7 @@ _releaseNoteUrl="https://community.grafana.com/t/release-notes-v5-3-x/10244" _whatsNewUrl="http://docs.grafana.org/guides/whats-new-in-v5-3/" -./release_publisher/release_publisher \ +./scripts/build/release_publisher/release_publisher \ --wn ${_whatsNewUrl} \ --rn ${_releaseNoteUrl} \ --version ${CIRCLE_TAG} \