Skip to content

Commit

Permalink
Build our resources before original build tasks
Browse files Browse the repository at this point in the history
It turns out that the `build_py` command actually also copies data files
into the build directory.  This naturally means we'll have to do the
Node.js based builds before `build_py` is allowed to copy those artifacts
further.

Refs SHOOP-994
  • Loading branch information
akx committed Jun 30, 2015
1 parent 787a896 commit f258cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shoop_setup_utils/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def get_sub_commands(self):
my_cmds = [
BuildProductionResourcesCommand.command_name,
]
return super_cmds + my_cmds
return my_cmds + super_cmds


class BuildResourcesCommand(distutils.core.Command):
Expand Down

0 comments on commit f258cb5

Please sign in to comment.