RejectedSoftware Forums

Sign up

dub and WindowsXP

Dub doesn't compile project because userWide package location contains spaces:
c:\Documents and Settings\username\Application Data\dub

Re: dub and WindowsXP

And how to force "dub build" to install packages to local .dub directory instead user folder?

Re: dub and WindowsXP

Am 23.06.2013 11:27, schrieb Jack Applegame:

And how to force "dub build" to install packages to local .dub directory instead user folder?

We decided to remove the local .dub/packages folder, as it usually just
means that the same package is installed multiple times, for each project.

Another possibility is to use "dub install <pack> --local
--version=<packversion>" (or git clone) to download the package to the
current directory and then "dub add-local <pack-packversion>" (or
"dub add-path .") to register it.

Re: dub and WindowsXP

Am 23.06.2013 11:23, schrieb Jack Applegame:

Dub doesn't compile project because userWide package location contains spaces:
c:\Documents and Settings\username\Application Data\dub

I'll test in a VM what went wrong there (it used to work).

Re: dub and WindowsXP

Am 23.06.2013 11:46, schrieb Sönke Ludwig:

Am 23.06.2013 11:23, schrieb Jack Applegame:

Dub doesn't compile project because userWide package location contains spaces:
c:\Documents and Settings\username\Application Data\dub

I'll test in a VM what went wrong there (it used to work).

Fixed for me now on master.

Re: dub and WindowsXP

Thanks.