From 6e38527fcc177237760eb14101787c3c67d1586b Mon Sep 17 00:00:00 2001 From: Joey Eamigh <55670930+JoeyEamigh@users.noreply.github.com> Date: Wed, 21 Jun 2023 19:22:14 -0400 Subject: [PATCH] reenabling dirty repo --- tooling.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tooling.py b/tooling.py index 852010d..06c3c36 100644 --- a/tooling.py +++ b/tooling.py @@ -59,9 +59,9 @@ def release(): exit(1) repo = Repo(WORKING_DIR) - # if repo.is_dirty(): - # cprint("repo is dirty - commit changes before releasing", "red") - # exit(1) + if repo.is_dirty(): + cprint("repo is dirty - commit changes before releasing", "red") + exit(1) export_pack()