MrcSnm / redub

Alternative implementation of dub, speed and consistency oriented
https://code.dlang.org/packages/redub
MIT License
37 stars 8 forks source link

Support redub -q test #29

Closed nordlow closed 1 week ago

nordlow commented 1 week ago

Currently

redub -q test 

fails as

Error Program exited with code 1

whereas

dub -q test 

passes.

MrcSnm commented 1 week ago

That happens due to how command line is handled inside redub, it uses D's std.getopt.

Old redub only supported redub test -q, now redub -q test is also valid.

nordlow commented 1 week ago

Awesome!