forked from petropavel13/pg_rrule
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclean_up.sh
executable file
·47 lines (45 loc) · 951 Bytes
/
clean_up.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
set -e
cd /usr/src/app
if test -f ./pg_rrule.so; then
rm ./pg_rrule.so
fi
if test -f ./regression.diffs; then
rm ./regression.diffs
fi
if test -f ./regression.out; then
rm ./regression.out
fi
if test -f ./src/pg_rrule.bc; then
rm ./src/pg_rrule.bc
fi
if test -f ./src/pg_rrule.o; then
rm ./src/pg_rrule.o
fi
if test -f ./sql/pg_rrule--0.2.0.sql; then
rm ./sql/pg_rrule--0.2.0.sql
fi
if test -f ./sql/pg_rrule.sql; then
rm ./sql/pg_rrule.sql
fi
if test -f ./results/base.out; then
rm ./results/base.out
fi
if test -f ./src/Makefile; then
rm ./src/Makefile
fi
if test -f ./src/.qmake.stash; then
rm ./src/.qmake.stash
fi
if test -f ./src/libpg_rrule.so.1; then
rm ./src/libpg_rrule.so.1
fi
if test -f ./src/libpg_rrule.so.1.0; then
rm ./src/libpg_rrule.so.1.0
fi
if test -f ./src/libpg_rrule.so.1.0.0; then
rm ./src/libpg_rrule.so.1.0.0
fi
if test -d ./output; then
rm -rf ./output
fi
# apk del tar g++ clang libical postgresql-dev llvm8