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
~/temp ❯ rustpkg install github.com/steveklabnik/hello
WARNING: The Rust package manager is experimental and may be unstable
task '<unnamed>' failed at 'Unhandled condition: nonexistent_package: (package_id::PkgId{path: std::path::PosixPath{is_absolute: false, components: ~[~"github.com", ~"steveklabnik", ~"hello"]}, short_name: ~"hello", version: NoVersion}, ~"supplied path for package dir does not exist, and couldn't interpret it as a URL fragment")', /home/sfackler/rust/src/libstd/condition.rs:131
Or via an extern mod declaration:
src/foo/main.rs:
extern mod hello = "github.com/steveklabnik/hello";fnmain(){}
~/temp ❯ rustpkg build foo
WARNING: The Rust package manager is experimental and may be unstable
task '<unnamed>' failed at 'Unhandled condition: nonexistent_package: (package_id::PkgId{path: std::path::PosixPath{is_absolute: false, components: ~[~"github.com", ~"steveklabnik", ~"hello"]}, short_name: ~"hello", version: NoVersion}, ~"supplied path for package dir does not exist, and couldn't interpret it as a URL fragment")', /home/sfackler/rust/src/libstd/condition.rs:131
task '<unnamed>' failed at 'receiving on closed channel', /home/sfackler/rust/src/libstd/rt/comm.rs:199
#9741 claims to have fixed it but it looks like that didn't quite work
I believe this is the same bug as #10253, actually (and I don't think it's related to #9987, or at least not anymore). The first case does work now -- rustpkg install github.com/steveklabnik/hello installs the package, at least for me. The second case doesn't work, but for a different reason than before. The reason has to do with the structure of the remote repo in this case (it's structured as a workspace). #10253 explains the problem in more detail, so I'm closing this as a dup.
Via either a manual install:
Or via an
extern mod
declaration:src/foo/main.rs:
#9741 claims to have fixed it but it looks like that didn't quite work
cc @catamorphism
The text was updated successfully, but these errors were encountered: