-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setblob breaking change information (#188)
* Create changeloG.md * Rename changeloG.md to changelog.md * Update changelog.md * Update changelog.md * Create setblobs-container.md * Create setblobs-container.md * Delete setblobs-container.md * Update setblobs-container.md * Update setblobs-container.md
- Loading branch information
Showing
2 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Since azmi [version 0.5](../changelog.md#version-05), azmi sub-command `setblob` is not supporting parameter `--container` anymore. You must use `--blob` to specify destination. | ||
|
||
## Not supported | ||
``` | ||
azmi setblob --container $CONTAINER --file $FILE | ||
``` | ||
|
||
## Supported | ||
``` | ||
azmi setblob --blob $BLOB --file $FILE | ||
``` | ||
|
||
## How to switch to supported version | ||
|
||
In reality blob url consists of container and blob paths. Solution is to update your commands like this: | ||
``` | ||
# azmi setblob --container $CONTAINER --file $FILE | ||
BLOB="$CONT/$FILE" | ||
azmi setblob --blob $BLOB --file $FILE | ||
``` |