From a8ec0c95a0b4e1ebe96b55cba668d34a027f3c14 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Wed, 6 Mar 2013 13:01:39 +0100 Subject: [PATCH] Fix hostexamples target Add missing bootstrap dir and examples.css --- build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 8c97ca22df..52e75ef114 100755 --- a/build.py +++ b/build.py @@ -367,8 +367,9 @@ def hostexamples(t): t.rm_rf(build_dir) t.makedirs(build_dir) t.cp(EXAMPLES, (path.replace('.html', '.js') for path in EXAMPLES), - 'examples/style.css', examples_dir) + 'examples/examples.css', examples_dir) t.cp_r('examples/data', examples_dir + '/data') + t.cp_r('examples/bootstrap', examples_dir + '/bootstrap') t.cp('build/loader_hosted_examples.js', examples_dir + '/loader.js') t.cp('build/ol.js', 'build/ol-simple.js', 'build/ol-whitespace.js', 'build/ol.css', build_dir)