You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>psc-package init
Initializing new project in current directory
Using the default package set for PureScript compiler version 0.11.7
(Use --source / --set to override this behavior)
Updating 1 packages...
Updating prelude
>
When run from Cygwin:
$ psc-package init
Initializing new project in current directory
Using the default package set for PureScript compiler version 0.11.7
(Use --source / --set to override this behavior)
fatal: could not create work tree dir '.psc-package\psc-0.11.7\.set': No such file or directory
$
After making the parent of the above folder manually, i.e.:
$ mkdir -p .psc-package/psc-0.11.7
it proceeds, only to fail on the next one:
$ psc-package init
Initializing new project in current directory
Using the default package set for PureScript compiler version 0.11.7
(Use --source / --set to override this behavior)
Updating 1 packages...
Updating prelude
fatal: could not create work tree dir '.psc-package\psc-0.11.7\prelude\v3.1.1': No such file or directory
After creating this one too:
$ mkdir -p .psc-package/psc-0.11.7/prelude
it finishes fine.
This is perhaps due to using \ instead of / for path separators.
Side note, all this is after manually copying purs.bin to purs.exe due to #34.
The text was updated successfully, but these errors were encountered:
Rembane
pushed a commit
to Rembane/psc-package
that referenced
this issue
May 26, 2018
When run from cmd prompt:
When run from Cygwin:
After making the parent of the above folder manually, i.e.:
it proceeds, only to fail on the next one:
After creating this one too:
it finishes fine.
This is perhaps due to using
\
instead of/
for path separators.Side note, all this is after manually copying
purs.bin
topurs.exe
due to #34.The text was updated successfully, but these errors were encountered: