Don't git clean App Version files
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user