Skip to content

Commit e51a65b

Browse files
Do not consume potentially existing global conda settings
1 parent 3b88eac commit e51a65b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apposed/appose/mamba/Mamba.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ public void createWithYaml( final File envDir, final String envYaml ) throws IOE
424424
{
425425
checkMambaInstalled();
426426
runMamba("env", "create", "--prefix",
427-
envDir.getAbsolutePath(), "-f", envYaml, "-y", "-vv" );
427+
envDir.getAbsolutePath(), "-f", envYaml, "-y", "-vv", "--no-condarc" );
428428
}
429429

430430
/**

0 commit comments

Comments
 (0)