DEV: Find .c and .so files with regex.

This commit is contained in:
Scott Sanderson
2016-09-02 12:56:36 -04:00
committed by GitHub
parent a3df81395a
commit 28bca7cbd7
+1 -1
View File
@@ -1,3 +1,3 @@
#!/bin/bash
find zipline tests -name "*.so" | xargs rm || true
find zipline tests -regex '.*\.\(c\|so\)' -exec rm {} +
python setup.py build_ext --inplace