Skip to content

Commit

Permalink
Suggest a way of cleaning dist if non-empty
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Jan 28, 2020
1 parent e9f4612 commit c60f588
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,10 @@ def build_release(session):

session.log("# Ensure no files in dist/")
if release.have_files_in_folder("dist"):
session.error("There are files in dist/. Remove them and try again")
session.error(
"There are files in dist/. Remove them and try again. "
"You can use `git clean -fxdi -- dist` command to do this"
)

session.log("# Install dependencies")
session.install("setuptools", "wheel", "twine")
Expand Down

0 comments on commit c60f588

Please sign in to comment.