From 8a4556437aa2ae54f9a7758ed2060ac44caf83f9 Mon Sep 17 00:00:00 2001 From: Michael Stucki Date: Sun, 15 Mar 2015 17:30:34 +0100 Subject: [PATCH] startup.sh: Be more verbose --- startup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/startup.sh b/startup.sh index 12441c9..9d7ca97 100644 --- a/startup.sh +++ b/startup.sh @@ -2,6 +2,7 @@ # Initialize ccache if needed if [ ! -f /srv/ccache/CACHEDIR.TAG ]; then + echo "Initializing ccache in /srv/ccache..." CCACHE_DIR=/srv/ccache ccache -M 50G fi @@ -10,6 +11,7 @@ fi # For performance reasons, only search on the first level. for i in "/home/cmbuild/android" "/srv/ccache"; do if [ $(find $i -maxdepth 1 -user root | wc -l) -gt 0 ]; then + echo "Fixing permissions on $i..." chown -R cmbuild:cmbuild $i fi done