Skip to content

Commit 0a7ef85

Browse files
Trim trailing quotes from jq output (#43)
* Trim trailing quotes from jq output * Use jq raw string output Co-authored-by: MaeIsBad <26093674+MaeIsBad@users.noreply.github.com> Co-authored-by: William Venner <14863743+WilliamVenner@users.noreply.github.com> Co-authored-by: MaeIsBad <26093674+MaeIsBad@users.noreply.github.com>
1 parent 1548da2 commit 0a7ef85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/build

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ cargo publish --all-features --package veil-macros
4545
current_remote_version=''
4646
while [ "$DRONE_TAG" != "$current_remote_version" ]
4747
do
48-
current_remote_version=$(curl "https://crates.io/api/v1/crates/veil-macros/$DRONE_TAG" -s | jq '.version .num')
48+
current_remote_version=$(curl "https://crates.io/api/v1/crates/veil-macros/$DRONE_TAG" -s | jq -r '.version .num')
4949
sleep 3
5050
done
5151

0 commit comments

Comments
 (0)