Merge pull request #11744 from ArjunDandagi/patch-1

doc-fix dont escape  $
This commit is contained in:
Jeff Bonhag 2020-07-07 11:03:13 -04:00 committed by GitHub
commit 3d992bb5df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,7 +118,7 @@ curl \
curl \
--header "Content-Type: application/json" \
--header "Authorization: Bearer \$VAGRANT_CLOUD_TOKEN" \
--header "Authorization: Bearer $VAGRANT_CLOUD_TOKEN" \
https://app.vagrantup.com/api/v1/box/myuser/test/versions \
--data '{ "version": { "version": "1.2.3" } }'
@ -126,7 +126,7 @@ curl \
curl \
--header "Content-Type: application/json" \
--header "Authorization: Bearer \$VAGRANT_CLOUD_TOKEN" \
--header "Authorization: Bearer $VAGRANT_CLOUD_TOKEN" \
https://app.vagrantup.com/api/v1/box/myuser/test/version/1.2.3/providers \
--data '{ "provider": { "name": "virtualbox" } }'
@ -147,7 +147,7 @@ curl $upload_path --request PUT --upload-file virtualbox-1.2.3.box
# Release the version
curl \
--header "Authorization: Bearer \$VAGRANT_CLOUD_TOKEN" \
--header "Authorization: Bearer $VAGRANT_CLOUD_TOKEN" \
https://app.vagrantup.com/api/v1/box/myuser/test/version/1.2.3/release \
--request PUT