Reword WTFPL and add punctuation to license not found message.

master
Mason Stallmo 7 years ago
parent 2d837f795c
commit 1c704b7b7c
  1. 2
      src/license.rs
  2. 6
      tests/all/utils/fixture.rs

@ -68,7 +68,7 @@ pub fn copy_from_crate(path: &Path, out_dir: &Path, step: &Step) -> Result<(), f
}
}
None => {
PBAR.step(step, "No LICENSE found in Cargo.toml skipping...");
PBAR.step(step, "No LICENSE found in Cargo.toml, skipping...");
}
};

@ -73,7 +73,7 @@ impl Fixture {
self.file(
"LICENSE-WTFPL",
r#"
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
DO WHATEVER YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
@ -82,10 +82,10 @@ impl Fixture {
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
DO WHATEVER YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
0. You just DO WHATEVER YOU WANT TO.
"#,
)
}

Loading…
Cancel
Save