Open sour-dani opened 4 hours ago
--add-file
is unclear. It does not inform you what to place after the file argument.Too few arguments for '--add-file'.
as it does not say what kind of argument it's looking for. VAR..
does not inform the user of needing to give a keyword and directory. There should be a standard word used such as path
or p
and it should be documented better in the documentation and help.
vpkeditcli --add-file test.txt completely_random_phrase test_folder -o test_dir
is valid usagevpkeditcli --add-file my_folder/test.txt -o test
.vpk
file the default behavior should be to add the _dir
suffix when --single-file
isn't passed as an argument..md
file or make a GitHub wiki.--add-file
can be improved, it is lackingtest.txt
as a subfolder of completely_random_phrase
, outputs the VPK to a file named test_dir
, using the contents of test_folder
. This is intended behavior-o
. I can change this behavior for explicit output filenames as wellThe error is a part of the argument parser library I am using and I cannot change it
Shame, thanks for the explanation.
- Assuming I haven't forgotten how to use my tool, your sample usage adds
test.txt
as a subfolder ofcompletely_random_phrase
, outputs the VPK to a file namedtest_dir
, using the contents oftest_folder
. This is intended behavior
I forgot that this program is intended for use with a directory and not specific files. That makes sense.
I can change this behavior for explicit output filenames as well
Thanks!
I will not be making separate documentation
Shame.
Any thought on the original subject of the issue?
Describe Your Suggestion
I would like to be able to pass in a list of items stored in a text file instead of calling
vpkeditcli
for every item in that text file. Similar to how a response file is handled with VPK with the@
symbol.