Add build scripts for creating manylinux wheels.
This commit is contained in:
parent
9acbaadf04
commit
c99bbe0515
4 changed files with 110 additions and 0 deletions
8
build-scripts/cleanup.sh
Executable file
8
build-scripts/cleanup.sh
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
cleanup="openssl-OpenSSL_1_1_1b sqlcipher sqlcipher3 wheelhouse"
|
||||
for p in $cleanup; do
|
||||
if [[ -d "$p" ]]; then
|
||||
sudo rm -rf "$p"
|
||||
fi
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue