-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid escaping string values with equal sign in complex parameters
All equal signs of an string assignment in complex parameters were required to be escaped, e.g. `--parts "id=hello\\=world"` Extended the type converter so that the part after an equal sign will always be treated as a simple value without splitting it again by the equal sign. This allows the user to use values with equals signs, like base64 encoded strings without the need to escape, e.g. `--parts "id=hello=world" This will set the id value to 'hello=world'.
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
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