Skip to content

Commit

Permalink
fix codeparameter setup.py
Browse files Browse the repository at this point in the history
so that the sdist does not need node

Signed-off-by: Pierre Tardy <pierre.tardy@intel.com>
  • Loading branch information
Pierre Tardy committed Mar 11, 2014
1 parent 83157ae commit 825ed7d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions www/codeparameter/setup.py
Expand Up @@ -241,8 +241,9 @@ class develop(setuptools.command.develop.develop):
]

def run(self):
for command in self.get_sub_commands():
self.run_command(command)
if MODE == 'SRC':
for command in self.get_sub_commands():
self.run_command(command)
setuptools.command.develop.develop.run(self)

cmdclass['develop'] = develop
Expand Down

0 comments on commit 825ed7d

Please sign in to comment.