diff options
-rw-r--r-- | vars/utils.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index 643979b..1dd384c 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -175,7 +175,7 @@ def run(configs, concurrent = true) { def conda_prefix = "${conda_root}/envs/${env_name}".trim() def packages = "" for (pkg in myconfig.conda_packages) { - packages = "${packages} ${pkg}" + packages = "${packages} '${pkg}'" } // Override removes the implicit 'defaults' channel from the channels // to be used, The conda_channels list is then used verbatim (in |