diff --git a/bin/compile b/bin/compile
index ca30084e35290a7e37b6f74c2460caa19a3268f1..a6bb2913d913c81aa0e448f50fcb86a30deb8bfa 100755
--- a/bin/compile
+++ b/bin/compile
@@ -126,11 +126,7 @@ fi
 
 # Restore old artifacts from the cache.
 for dir in $CACHED_DIRS; do
-  echo "copying $dir..."
-  echo "$ ls $CACHE_DIR/$dir"
-  ls $CACHE_DIR/$dir
   cp -R $CACHE_DIR/$dir . &> /dev/null || true
-  ls $dir
 done
 
 
@@ -200,14 +196,9 @@ set -e
 
 # Store new artifacts in cache.
 for dir in $CACHED_DIRS; do
-  echo "copying $dir..."
-  echo "$ ls $CACHE_DIR/$dir"
-  ls $CACHE_DIR/$dir
 
   rm -rf $CACHE_DIR/$dir
-  ls $dir
   cp -R $dir $CACHE_DIR/
-  ls $CACHE_DIR/
 done
 
 # ### Fin.
\ No newline at end of file