Browse Source

Add self advertisement header

master
Schneider 3 years ago
parent
commit
4c21407647
Signed by: schneider GPG Key ID: 3F50B02A50039F3B
  1. 1
      src/template.rs

1
src/template.rs

@ -120,6 +120,7 @@ impl Template {
.chain_err(|| "Error while opening gitignore file to write template")?;
let mut writer = BufWriter::new(file);
writer.write_all(b"# template downloaded with gitig (https://git.schneider-hosting.de/schneider/gitig) from https://github.com/github/gitignore\n")?;
writer.write_all(self.content.as_ref().expect("checked before to be some").as_bytes())?;
trace!("Wrote all content");
Ok(())

Loading…
Cancel
Save