Skip to content

Commit

Permalink
publishing uranium 0.2.23
Browse files Browse the repository at this point in the history
  • Loading branch information
toumorokoshi committed Jan 12, 2016
1 parent 6d994af commit 0fb785e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
]

setup(name='uranium',
version='0.2.23b',
version='0.2.24b',
description='a build system for python',
long_description=open('README.rst').read(),
author='Yusuke Tsutsumi',
Expand Down
5 changes: 1 addition & 4 deletions uranium/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,7 @@ def _run_script(self, path, task_name, override_func=None):
path, task_name, _get_formatted_public_tasks(script)
))
self.hooks.run("initialize", self)
if task_name in self._tasks:
output = self._tasks.run(task_name, self)
else:
output = script[task_name](build=self)
output = self._tasks.run(task_name, self)
self.hooks.run("finalize", self)
return output

Expand Down

0 comments on commit 0fb785e

Please sign in to comment.