X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/62ebcfc28be6492825957985187968e6aa4c3d72..b54f6d972fc58a07bad40e2fe045dae30683e987:/AaptAssets.cpp diff --git a/AaptAssets.cpp b/AaptAssets.cpp index b6b0e63..c346b90 100644 --- a/AaptAssets.cpp +++ b/AaptAssets.cpp @@ -55,6 +55,7 @@ static bool validateFileName(const char* fileName) static bool isHidden(const char *root, const char *path) { + const char *ext = NULL; const char *type = NULL; // Skip all hidden files. @@ -83,6 +84,9 @@ static bool isHidden(const char *root, const char *path) } else if (path[strlen(path)-1] == '~') { // Skip suspected emacs backup files. type = "backup"; + } else if ((ext = strrchr(path, '.')) != NULL && strcmp(ext, ".scc") == 0) { + // Skip VisualSourceSafe files and don't chatter about it + return true; } else { // Let everything else through. return false;