From fc7aae84d0434e16febd0deb5a80553d2fddf290 Mon Sep 17 00:00:00 2001 From: Hugo Chesneau Date: Thu, 14 Dec 2023 15:04:06 +0100 Subject: [PATCH] removed sys.exit if micromamba is used for .exe --- constructor/main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/constructor/main.py b/constructor/main.py index 130198487..0c6099277 100644 --- a/constructor/main.py +++ b/constructor/main.py @@ -89,9 +89,7 @@ def main_build(dir_path, output_dir='.', platform=cc_platform, if platform != cc_platform and 'pkg' in itypes and not cc_platform.startswith('osx-'): sys.exit("Error: cannot construct a macOS 'pkg' installer on '%s'" % cc_platform) - if osname == "win" and "micromamba" in os.path.basename(info['_conda_exe']): - # TODO: Remove when shortcut creation is implemented on micromamba - sys.exit("Error: micromamba is not supported on Windows installers.") + logger.debug('conda packages download: %s', info['_download_dir'])