@cloud-copilot/cli 0.1.17 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,7 +125,7 @@ String or number arguments can be provided as `--name value` or `--name value1 v
|
|
|
125
125
|
|
|
126
126
|
String or number arguments will throw an error if:
|
|
127
127
|
|
|
128
|
-
- The flag is specified
|
|
128
|
+
- The flag is specified and no values are provided
|
|
129
129
|
- The argument accepts only one value and multiple values are provided
|
|
130
130
|
- The argument is a number and a non-number value is provided
|
|
131
131
|
|
|
@@ -135,14 +135,12 @@ Enum arguments can be provided as `--name value1 value2`. The values must be one
|
|
|
135
135
|
|
|
136
136
|
Enum arguments will throw an error if:
|
|
137
137
|
|
|
138
|
-
- The flag is specified
|
|
138
|
+
- The flag is specified and no values are provided
|
|
139
139
|
- The argument accepts only one value and multiple values are provided
|
|
140
140
|
- Any of the arguments provided are not in the list of allowed values.
|
|
141
141
|
|
|
142
142
|
If the value is not one of the values provided, an error will be thrown.
|
|
143
143
|
|
|
144
|
-
If a string or number argument is provided with no values an error will be thrown.
|
|
145
|
-
|
|
146
144
|
### Operands
|
|
147
145
|
|
|
148
146
|
Operands are the remaining values after the arguments.
|