Skip to content

Commit

Permalink
rustpkg: Use pkg.rs instead of package.rs for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
z0w0 authored and graydon committed Feb 16, 2013
1 parent b10dc1a commit efe5a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustpkg/rustpkg.rc
Expand Up @@ -55,10 +55,10 @@ struct PackageScript {

impl PackageScript {
static fn parse(parent: &Path) -> Result<PackageScript, ~str> {
let script = parent.push(~"package.rs");
let script = parent.push(~"pkg.rs");

if !os::path_exists(&script) {
return result::Err(~"no package.rs file");
return result::Err(~"no pkg.rs file");
}

let binary = os::args()[0];
Expand Down

0 comments on commit efe5a0a

Please sign in to comment.