chore: revert sentiment update on GIT_CLEAN requirement

This commit is contained in:
Convly 2023-12-14 10:52:09 +01:00
parent a17f4e8617
commit f646f9ceda

View File

@ -11,7 +11,7 @@ export const REQUIRE_GIT_CLEAN_REPOSITORY = requirementFactory(
if (!status.isClean()) { if (!status.isClean()) {
throw new Error( throw new Error(
'Repository is not clean. Please consider committing or stashing any changes before upgrading' 'Repository is not clean. Please commit or stash any changes before upgrading'
); );
} }
} }