From ff91457b5af7ffe2962a15b5609ca95dbf656e30 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Mon, 20 Aug 2018 15:06:54 -0400 Subject: [PATCH] Clean the correct folder after building the minimal Python interface --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 0aa885101..a453a2fa4 100644 --- a/SConstruct +++ b/SConstruct @@ -76,7 +76,7 @@ if 'clean' in COMMAND_LINE_TARGETS: removeDirectory('doc/sphinx/cython/examples') removeFile('doc/sphinx/cython/examples.rst') removeDirectory('interfaces/cython/Cantera.egg-info') - removeDirectory('interfaces/python_minimal/Cantera_minimal_.egg-info') + removeDirectory('interfaces/python_minimal/Cantera_minimal.egg-info') for name in os.listdir('interfaces/cython/cantera/data/'): if name != '__init__.py': removeFile('interfaces/cython/cantera/data/' + name)