-
Notifications
You must be signed in to change notification settings - Fork 823
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dnvm upgrade can't install DNX runtimes #217
Comments
It's known issue (broken pipe), related to: #14 |
Did some more digging because I was curious and the error didn't seem like the others in #14 . The following line breaks in dnvm.sh (line 629):
__dnvm_find_latests ends with an echo statement, so I sort of reproduced it below:
Then just using plain process subsitution:
I would expect the following (this is in Cygwin...don't have a Linux install nearby):
It seems like creating the temporary named pipe (/dev/fd/62) for the process subsitution is not working. Assuming mkfifo is used to create the named pipe, #71 should fix this issue. Furthermore, the symlink /dev/fd/ -> /proc/self/fd does not exist. Not sure if that would cause a problem, though, but I would think that's how it would be set up. |
@duraz0rz There is no device like /dev/fd/. There is similar problem in |
/dev/fd/ is symlinked to /proc/self/fd/ in other systems. I'm assuming <(ls
On Tue, Apr 19, 2016, 01:05 Patryk Golus notifications@github.com wrote:
|
Process substitution is working in a more recent Windows Insider build. Please reopen if you continue to see issues. |
Followed the instructions on here: http://docs.asp.net/en/latest/getting-started/installing-on-linux.html
The apt packages install, dnvm installs and runs, but running dnvm upgrade to install the CoreCLR causes this error:
Is there something I'm missing?
The text was updated successfully, but these errors were encountered: