-
Notifications
You must be signed in to change notification settings - Fork 80
/
clean.sh
executable file
·59 lines (49 loc) · 1.89 KB
/
clean.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env bash
# general case script abort if a command fails
# this can be overridden with a custom error message using '|| err_shutdown'
set -e
set -o pipefail
### define utility functions ###
################################
err_shutdown() {
echo "clean.sh: ERROR: $1"
deactivate
exit 1
}
### check to prevent users from running this script directly ###
################################################################
if [ "$1" != "ranFromGradle" ];
then
err_shutdown "this script should be run using the atlas gradle task 'cleanPyatlas'"
fi
### set up variables to store directory names ###
#################################################
gradle_project_root_dir="$(pwd)"
pyatlas_dir="pyatlas"
pyatlas_srcdir="pyatlas"
pyatlas_testdir="unit_tests"
pyatlas_docdir="doc"
pyatlas_root_dir="$gradle_project_root_dir/$pyatlas_dir"
venv_path="$pyatlas_root_dir/__pyatlas_venv__"
protoc_path="$pyatlas_root_dir/protoc"
### abort the script if the pyatlas source folder is not present ###
####################################################################
if [ ! -d "$pyatlas_root_dir/$pyatlas_srcdir" ];
then
err_shutdown "pyatlas source folder not found"
fi
### clean up the build artifacts ###
####################################
echo "Cleaning build artifacts if present..."
rm -rf "$pyatlas_root_dir/build"
rm -rf "$pyatlas_root_dir/dist"
rm -rf "$pyatlas_root_dir/pyatlas.egg-info"
rm -f "$pyatlas_root_dir/LICENSE"
rm -rf "$venv_path"
rm -f "$protoc_path"
# use 'find' to handle case where filenames contain spaces
find "$pyatlas_root_dir/$pyatlas_srcdir/autogen" -type f -name "*_pb2.py" -delete
find "$pyatlas_root_dir/$pyatlas_srcdir" -type f -name "*.pyc" -delete
find "$pyatlas_root_dir/$pyatlas_srcdir/autogen" -type f -name "*.pyc" -delete
find "$pyatlas_root_dir/$pyatlas_testdir" -type f -name "*.pyc" -delete
find "$pyatlas_root_dir/$pyatlas_docdir" -type f -name "*.html" -delete