aboutsummaryrefslogtreecommitdiffstats
path: root/tools/packaging/packager.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/packaging/packager.py')
-rw-r--r--tools/packaging/packager.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/packaging/packager.py b/tools/packaging/packager.py
index 174174898..dbdde06a4 100644
--- a/tools/packaging/packager.py
+++ b/tools/packaging/packager.py
@@ -171,6 +171,10 @@ for temp in os.listdir(TEST262_CASES_DIR):
print "The expected ES5 test directory,", temp, "did not exist!"
sys.exit(1)
+ if temp.find("/.") != -1:
+ # skip hidden files on Unix, such as ".DS_Store" on Mac
+ continue
+
if not ONE_JSON_PER_CHAPTER:
dirWalker(temp)
else: