From 83a00c13fa82d9ee8a5d6bca07b5289a42d9b99f Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Tue, 12 Feb 2013 17:05:59 +0100 Subject: [PATCH] Don't use problematic glob function --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index f8ffbb7eb5..eb1dd3d6ba 100755 --- a/build.py +++ b/build.py @@ -207,7 +207,7 @@ def serve(t): @target('serve-precommit', PLOVR_JAR, INTERNAL_SRC) def serve_precommit(t): - t.run('%(JAVA)s', '-jar', PLOVR_JAR, 'serve', 'build/ol-all.json', glob.glob('test/*.json')) + t.run('%(JAVA)s', '-jar', PLOVR_JAR, 'serve', 'build/ol-all.json', 'test/test.json') virtual('lint', 'build/lint-src-timestamp', 'build/lint-spec-timestamp', 'build/check-requires-timestamp')