diff options
Diffstat (limited to 'src/librustpkg/conditions.rs')
| -rw-r--r-- | src/librustpkg/conditions.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/librustpkg/conditions.rs b/src/librustpkg/conditions.rs index 35e70af7914..5b19a3bd660 100644 --- a/src/librustpkg/conditions.rs +++ b/src/librustpkg/conditions.rs @@ -18,5 +18,13 @@ condition! { } condition! { - nonexistent_package: (super::PkgId, ~str) -> super::Path; + nonexistent_package: (super::PkgId, ~str) -> (); +} + +condition! { + copy_failed: (super::Path, super::Path) -> (); +} + +condition! { + missing_pkg_files: (super::PkgId) -> (); } |
