Don't git clean App Version files

This commit is contained in:
Mike A. Trethewey
2020-02-27 01:30:16 -08:00
parent aeeb5dba11
commit 2e19a32053

View File

@@ -8,7 +8,8 @@ def git_clean():
"-dfx", # d: directories, f: files, x: ignored files
"--exclude=.vscode", # keep vscode IDE files
"--exclude=.idea", # keep idea IDE files
"--exclude=*.json"]) # keep JSON files for that one time I just nuked all that I was working on, oops
"--exclude=*.json", # keep JSON files for that one time I just nuked all that I was working on, oops
"--exclude=*app*version.*"]) # keep appversion files
if __name__ == "__main__":
git_clean()