We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 240f9c4 commit 89686cdCopy full SHA for 89686cd
bin/compile
@@ -7,21 +7,19 @@ readonly CLEANUP_FILE=".slugcleanup"
7
8
cd ${BUILD_DIR}
9
10
-echo "-----> Slug cleanup started"
11
-echo
+echo "-----> Cleaning up slug..."
12
13
while read location; do
14
[[ -z "${location}" ]] && continue
15
16
location_items=($(echo ${location}))
17
18
if [[ -e ${location_items[0]} ]]; then
19
- echo "Removing location ${location} from slug"
+ echo " Removing location ${location}"
20
rm -rf ${location}
21
else
22
- echo "Ignoring not found location ${location}"
+ echo " Ignoring not found location ${location}"
23
fi
24
done <${CLEANUP_FILE}
25
26
27
-echo "Slug cleanup finished"
+echo " Slug cleanup completed"
0 commit comments