Browse Source

Bump to 0.1.4

add-rc-path
Alex Crichton 10 years ago
parent
commit
fa20c62b28
  1. 4
      src/lib.rs

4
src/lib.rs

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::Command; use std::io::Command;
use std::io::process::InheritFd; use std::io::process::InheritFd;
use std::default::Default; use std::default::Default;
@ -28,7 +30,7 @@ impl Default for Config {
fn getenv(v: &str) -> Option<String> { fn getenv(v: &str) -> Option<String> {
use std::os::getenv; use std::os::getenv;
let r = getenv(v); let r = getenv(v);
println!("{:?} = {:?}", v, r); println!("{} = {:?}", v, r);
r r
} }

Loading…
Cancel
Save