Mathias LANG
Mathias LANG
Well 18.04 is deprecated. So we need to upgrade at least to 20.04.
> The ability to specify the dependencies as URL is intended only for testing/development. We have a private registry, where we host public and private packages. The idea is to...
> MyPackage have been updated to v41.0.1-1-g424242 By the way, that will need to be a hack on dub's side. The version that `git` provides is actually "v41.0.0-1-g424242", and according...
Good point! Turning `v41.0.0-1-g424242` into `v41.0.0+1-g424242` sounds like it could work without drawback. > MyPackage is not a submodule of MyProgram, it is a normal dependency in `dub.json`; Right. The...
> I don't really see any disadvantage in cloning recursively from the start, should we just add it? I do. If you look at `sociomantic-tsunami` projects, we never had recursive...
Going over them tonight, and will fix what I can. I also saw some issues coming from #1987 so I'll resume work on this after those are fixed.
Already done :P That's actually why I self-merged the other PR.
Okay, I found the source of those spurious errors. When we do things like `$DUB describe package | grep something | head -n 1`, `head` ends up closing the pipe...
I'm not sure what exactly you are suggesting ? Abstracting away lflags between Windows and POSIX is near impossible, as there is no proper mechanism for sharing DLLs on Windows...
Okay, I've had to make things cross platform between Mac, Linux and Windows, and I understand this issue better now. What I ended up going with, to avoid hard-coding too...