mirror of
https://github.com/wassname/catalyst.git
synced 2026-08-03 12:40:47 +08:00
9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
find -E zipline tests -regex '.*\.(c|so)' -exec rm {} +
|
|
else
|
|
find zipline tests -regex '.*\.\(c\|so\)' -exec rm {} +
|
|
fi
|
|
python setup.py build_ext --inplace
|