Remove exception for experimental-build branch
It was replaced with using feature branches, which are easier to keep track of.
This commit is contained in:
@@ -98,8 +98,6 @@ class Package:
|
|||||||
def get_download_dir(branch):
|
def get_download_dir(branch):
|
||||||
if not branch or branch == 'master':
|
if not branch or branch == 'master':
|
||||||
directory = DOWNLOAD_DIR
|
directory = DOWNLOAD_DIR
|
||||||
elif branch == 'experimental-build':
|
|
||||||
directory = os.path.join(DOWNLOAD_DIR, "experimental")
|
|
||||||
else:
|
else:
|
||||||
directory = os.path.join(DOWNLOAD_DIR, branch)
|
directory = os.path.join(DOWNLOAD_DIR, branch)
|
||||||
os.makedirs(directory, exist_ok=True)
|
os.makedirs(directory, exist_ok=True)
|
||||||
|
Reference in New Issue
Block a user