mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
22 lines
404 B
Bash
Executable File
22 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
rm -rf \
|
|
cmapi_server/test/tmp.xml \
|
|
systemd.env \
|
|
*.service \
|
|
prerm \
|
|
postinst \
|
|
CMakeCache.txt \
|
|
CMakeFiles \
|
|
CMakeScripts \
|
|
Makefile \
|
|
cmake_install.cmake \
|
|
install_manifest.txt \
|
|
*CPack* \
|
|
# buildinfo.txt
|
|
|
|
find . -type d -name __pycache__ -exec rm -rf {} +
|
|
find . -type f -iname '*.swp' -exec rm -rf {} +
|