MrcSnm / redub

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

redub ignores targetName parameter in dub.sdl while dub respects it #24

Closed o3o closed 1 month ago

o3o commented 1 month ago

It appears that redub does not respect the targetName parameter specified in the dub.sdl file, whereas dub correctly uses this parameter to set the output target name.

Steps to Reproduce:

Expected Behavior: redub should respect the targetName parameter and produce an output file with the specified name, similar to how dub handles it.

Actual Behavior: redub ignores the targetName parameter, resulting in an incorrectly named output file.

MrcSnm commented 1 month ago

Working in progress for that right now

If that is a blocker, redub also supports redub --targetName=your-target-name,you can use that while I fix it

MrcSnm commented 1 month ago

Fixed in v1.13.6

o3o commented 1 month ago

thank you very much