mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2025-01-08 12:36:52 +03:00
Use space as separator
This commit is contained in:
parent
c6bc18570d
commit
286f143fc4
@ -122,7 +122,7 @@ class Option:
|
||||
elif key == "help":
|
||||
help = v
|
||||
elif key == "conflict":
|
||||
conflict = [a.strip() for a in v.split(",")]
|
||||
conflict = [a.strip() for a in v.split(" ")]
|
||||
elif key == "multi":
|
||||
if v == "append":
|
||||
append = True
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: check
|
||||
long: check
|
||||
help: Run in 'check' mode
|
||||
conflict: format, output
|
||||
conflict: format output
|
||||
---
|
||||
Run in 'check' mode. Exits with 0 if input is formatted correctly, 1 otherwise.
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: color
|
||||
long: color
|
||||
help: Colorize Output
|
||||
conflict: no_color, in_place
|
||||
conflict: no_color in_place
|
||||
---
|
||||
Colorize Output.
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: in_place
|
||||
long: in-place
|
||||
help: Modify files in place
|
||||
conflict: output, color
|
||||
conflict: output color
|
||||
---
|
||||
Modify file in place.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user