Skip to content

Commit

Permalink
Reword WTFPL and add punctuation to license not found message.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstallmo committed Oct 31, 2018
1 parent 879664b commit 298582f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/license.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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...");
}
};

Expand Down
6 changes: 3 additions & 3 deletions tests/all/utils/fixture.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,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>
Expand All @@ -88,10 +88,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.
"#,
)
}
Expand Down

0 comments on commit 298582f

Please sign in to comment.