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:
2020-02-11 15:32:23 +01:00
parent e406a1118e
commit f653ad7ae7

View File

@@ -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)