Since azmi version 0.5, azmi sub-command setblob
is not supporting parameter --container
anymore. You must use --blob
to specify destination.
azmi setblob --container $CONTAINER --file $FILE
azmi setblob --blob $BLOB --file $FILE
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