From 7f2c8622ca8a2a5481ff1ea907648d21b6dfd66b Mon Sep 17 00:00:00 2001 From: Ross McDonald Date: Fri, 18 Mar 2016 10:29:12 -0500 Subject: [PATCH] Prevent an rc in the version tag from preventing a nightly build. --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index 986473322..69c21ec5f 100755 --- a/build.py +++ b/build.py @@ -745,8 +745,8 @@ def main(): return 1 if nightly and rc: - print "!! Cannot be both nightly and a release candidate! Stopping." - return 1 + # If nightly is specified, reset rc to None + rc = None if nightly: # In order to cleanly delineate nightly version, we are adding the epoch timestamp