diff --git a/resources/ci/common/git_clean.py b/resources/ci/common/git_clean.py index 9b424283..6a8ca8fc 100644 --- a/resources/ci/common/git_clean.py +++ b/resources/ci/common/git_clean.py @@ -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()