mirror of https://github.com/tc39/test262.git
Fixed bug 443: packager.py fails on Mac because of .DS_Store files.
Running packager.py on Mac unfortunately also changes some line terminators in generated files (bug 444), so lots of additional files in this commit.
This commit is contained in:
parent
9c48816277
commit
d371b39cb6
|
@ -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:
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"date":"2012-05-18","version":"ES5.1"}
|
||||
{"date":"2012-07-18","version":"ES5.1"}
|
Loading…
Reference in New Issue