Skip to content

Commit

Permalink
[#1195] Also minify css and js in ckanext dir when running `paster fr…
Browse files Browse the repository at this point in the history
…ont-end-build`
  • Loading branch information
domoritz committed Aug 15, 2013
1 parent db39bd5 commit 20d9703
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ckan/lib/cli.py
Expand Up @@ -2003,5 +2003,7 @@ def command(self):
cmd.options = self.options
root = os.path.join(os.path.dirname(__file__), '..', 'public', 'base')
root = os.path.abspath(root)
cmd.args = (root,)
ckanext = os.path.join(os.path.dirname(__file__), '..', '..', 'ckanext')
ckanext = os.path.abspath(ckanext)
cmd.args = (root, ckanext)
cmd.command()

0 comments on commit 20d9703

Please sign in to comment.