From 2e19a3205348c9575b305ec7d09982da71e22bd8 Mon Sep 17 00:00:00 2001 From: "Mike A. Trethewey" Date: Thu, 27 Feb 2020 01:30:16 -0800 Subject: [PATCH] Don't git clean App Version files --- resources/ci/common/git_clean.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()