From 7402f14ddf6d71ed18cc85d59283bf3d3775d273 Mon Sep 17 00:00:00 2001 From: David O'Connor Date: Thu, 5 Mar 2020 21:33:43 -0500 Subject: [PATCH] Don't create a LICENSE with the project --- CHANGELOG.md | 1 + src/main.rs | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adfbf0c..01ff9e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/main.rs b/src/main.rs index 48b263c..14f4285 100644 --- a/src/main.rs +++ b/src/main.rs @@ -579,7 +579,6 @@ pub fn new(name: &str) -> Result<(), Box> { 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))?; }