make build script only include code/*.js - otherwise temp files can catch you out
This commit is contained in:
parent
e1b4569f2f
commit
3bd8d1a548
2
build.py
2
build.py
@ -132,7 +132,7 @@ def loaderImage(var):
|
||||
return 'data:image/png;base64,{0}'.format(base64.encodestring(open(fn, 'rb').read()).decode('utf8').replace('\n', ''))
|
||||
|
||||
def loadCode(ignore):
|
||||
return '\n\n'.join(map(readfile, glob.glob('code/*')))
|
||||
return '\n\n'.join(map(readfile, glob.glob('code/*.js')))
|
||||
|
||||
|
||||
def extractUserScriptMeta(var):
|
||||
|
Loading…
x
Reference in New Issue
Block a user