Skip to content

Commit

Permalink
Don't create a LICENSE with the project
Browse files Browse the repository at this point in the history
  • Loading branch information
David-OConnor committed Mar 6, 2020
1 parent ef5715c commit 7402f14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,7 @@
## v0.2.5
- Added support for `manylinux2014` spec
- Fixed a dependency-installation bug triggered by symlinks inside Pypi source archives
- `pyflow new` no longer creates a `LICENSE` file

## v0.2.4
- Fixed a bug where `pyflow script` was broken
Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Expand Up @@ -579,7 +579,6 @@ pub fn new(name: &str) -> Result<(), Box<dyn Error>> {
fs::create_dir_all(&format!("{}/{}", name, name.replace("-", "_")))?;
fs::File::create(&format!("{}/{}/__init__.py", name, name.replace("-", "_")))?;
fs::File::create(&format!("{}/README.md", name))?;
fs::File::create(&format!("{}/LICENSE", name))?;
fs::File::create(&format!("{}/.gitignore", name))?;
}

Expand Down

0 comments on commit 7402f14

Please sign in to comment.