bugfix
This commit is contained in:
parent
dd234554e8
commit
453f3df1bb
@ -75,15 +75,14 @@ class ConfiguredServer:
|
|||||||
if part == '':
|
if part == '':
|
||||||
subpaths = listFolder(p)
|
subpaths = listFolder(p)
|
||||||
for sp in subpaths:
|
for sp in subpaths:
|
||||||
if not sp.endswith('bricks'):
|
fs += [f[pos:] for f in listFile(sp, suffixs=[suffix])]
|
||||||
fs += [f[pos:] for f in listFile(sp, suffixs=[suffix])]
|
|
||||||
return fs
|
return fs
|
||||||
|
|
||||||
def get_css_files(self):
|
def get_css_files(self):
|
||||||
return self.get_filetype_files('.css')
|
return [ f for f in self.get_filetype_files('.css') if not f.startswith('/bricks') ]
|
||||||
|
|
||||||
def get_js_files(self):
|
def get_js_files(self):
|
||||||
return self.get_filetype_files('.js')
|
return [ f for f in self.get_filetype_files('.js') if not f.startswith('/bricks') ]
|
||||||
|
|
||||||
async def build_app(self):
|
async def build_app(self):
|
||||||
rf = RegisterFunction()
|
rf = RegisterFunction()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user