Skip to content

Commit

Permalink
Merge branch 'master' of github.com:openlayers/ol3 into vector
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaub committed Feb 18, 2013
2 parents e30b095 + 4c2463d commit 8defe3a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.py
Expand Up @@ -345,7 +345,10 @@ def hostexamples(t):
@target(PROJ4JS, PROJ4JS_ZIP)
def proj4js(t):
from zipfile import ZipFile
ZipFile(PROJ4JS_ZIP).extractall('build')
zf = ZipFile(PROJ4JS_ZIP)
contents = zf.open('proj4js/lib/proj4js-combined.js').read()
with open(t.name, 'wb') as f:
f.write(contents)


@target(PROJ4JS_ZIP, clean=False)
Expand Down

0 comments on commit 8defe3a

Please sign in to comment.