From f653ad7ae732dda884714f3e42017e50c9a23b34 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 11 Feb 2020 15:32:23 +0100 Subject: [PATCH] Remove exception for experimental-build branch It was replaced with using feature branches, which are easier to keep track of. --- master_unpack.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/master_unpack.py b/master_unpack.py index 4d1d271..ecfc7d0 100644 --- a/master_unpack.py +++ b/master_unpack.py @@ -98,8 +98,6 @@ class Package: def get_download_dir(branch): if not branch or branch == 'master': directory = DOWNLOAD_DIR - elif branch == 'experimental-build': - directory = os.path.join(DOWNLOAD_DIR, "experimental") else: directory = os.path.join(DOWNLOAD_DIR, branch) os.makedirs(directory, exist_ok=True)