From 7a9c5142f5cf7b38179f7c1d1701cf8f2cf855f9 Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Fri, 10 Apr 2020 17:39:47 +0000 Subject: [PATCH] Don't quote RELEASE_ARGS which may contain two arguments If it is "--draft --pre-release" then we need to pass that unquoted so it is seen as two arguments. --- bin/release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/release b/bin/release index 8ffdfaa50b..9328c8ae21 100755 --- a/bin/release +++ b/bin/release @@ -144,7 +144,7 @@ draft() { fi echo "== Creating GitHub release $RELEASE_ARGS $RELEASE_NAME $VERSION" - github-release release "$RELEASE_ARGS" \ + github-release release $RELEASE_ARGS \ --user "$GITHUB_USER" \ --repo scope \ --tag "$LATEST_TAG" \