Skip to content

Commit

Permalink
Add slave/setup.py Windows fixes to master/setup.py, too. Bump to rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Hearsum committed Jul 5, 2010
1 parent 5ff08bb commit d5b076b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion master/buildbot/__init__.py
@@ -1 +1 @@
version = "0.8.1-rc2"
version = "0.8.1-rc3"
4 changes: 3 additions & 1 deletion master/setup.py
Expand Up @@ -158,7 +158,9 @@ def finalize_options(self):
"""

scripts = ["bin/buildbot"]
if sys.platform == "win32":
# sdist is usually run on a non-Windows platform, but the buildslave.bat file
# still needs to get packaged.
if 'sdist' in sys.argv or sys.platform == 'win32':
scripts.append("contrib/windows/buildbot.bat")
scripts.append("contrib/windows/buildbot_service.py")

Expand Down
2 changes: 1 addition & 1 deletion slave/buildslave/__init__.py
@@ -1 +1 @@
version = "0.8.1-rc2"
version = "0.8.1-rc3"

0 comments on commit d5b076b

Please sign in to comment.