From b728138537e85253aa7ba6ed398d61121f3f64b3 Mon Sep 17 00:00:00 2001 From: Chris Marchesi Date: Mon, 28 Nov 2022 10:28:56 -0800 Subject: [PATCH] Address edit request from @chrisroberts --- website/content/vagrant-cloud/api.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/content/vagrant-cloud/api.mdx b/website/content/vagrant-cloud/api.mdx index 45e3f1359..2cec0a38b 100644 --- a/website/content/vagrant-cloud/api.mdx +++ b/website/content/vagrant-cloud/api.mdx @@ -145,7 +145,7 @@ upload_path=$(echo "$response" | jq .upload_path) # Perform the upload -curl --request PUT $upload_path --upload-file virtualbox-1.2.3.box +curl --request PUT "${upload_path}" --upload-file virtualbox-1.2.3.box # Release the version @@ -516,7 +516,7 @@ end curl \ --request GET \ --header "Authorization: Bearer $VAGRANT_CLOUD_TOKEN" \ - https://app.vagrantup.com/api/v1/search?q=test&provider=virtualbox + "https://app.vagrantup.com/api/v1/search?q=test&provider=virtualbox" ``` @@ -1565,7 +1565,7 @@ curl \ curl --request PUT \ - --header "Authorization: Bearer $VAGRANT_CLOUD_TOKEN" + --header "Authorization: Bearer $VAGRANT_CLOUD_TOKEN" \ "${callback}" ```