Open
Description
Functional impact
It's inconvenient to type --files
for every individual file (also, why is --files
pluralized if it can only specify one file?)
Minimal repro steps
libman install [email protected] --files jquery.js --files jquery.min.js --files jquery.min.map
Expected result
--files
ought to be the last parameter, and everything after it should be considered a file name. This proposed behavior is similar to the --
parameter in GNU convention.
The above command could be simplified to:
libman install [email protected] --files jquery.js jquery.min.js jquery.min.map
In the following, --destination and foo would be considered file names.
libman install [email protected] --files jquery.js jquery.min.js jquery.min.map --destination foo
Actual result
It's tedious.