tasks will now delete their own git folders

git will check for uncommitted changes before deleting
added --ignore-uncommitted-changes
This commit is contained in:
isanae
2020-05-25 02:19:39 -04:00
parent 863d8be99e
commit ac3fa98e51
18 changed files with 177 additions and 61 deletions
+6
View File
@@ -80,6 +80,12 @@ void python::do_clean(clean c)
}
else
{
if (is_any_set(c, clean::redownload|clean::reextract))
{
git::delete_directory(cx(), source_path());
return;
}
if (is_set(c, clean::rebuild))
run_tool(create_msbuild_tool(msbuild::clean));
}