From d13a33d2bffa38757325ffcb04c61b0e9cc82725 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 23 Aug 2022 16:05:07 -0500 Subject: [PATCH] fix: Add '--yes' flag to mamba install (#27) * Without the `--yes` flag the mamba install will hang waiting for user input. --- binder/postBuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binder/postBuild b/binder/postBuild index 81901d5..7925d49 100644 --- a/binder/postBuild +++ b/binder/postBuild @@ -8,4 +8,4 @@ conda config --add channels conda-forge conda config --set channel_priority strict # Use mamba to speed up install -mamba install root +mamba install --yes root