aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/drupal.sh.erb4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/drupal.sh.erb b/templates/drupal.sh.erb
index 77c4b53..2665571 100644
--- a/templates/drupal.sh.erb
+++ b/templates/drupal.sh.erb
@@ -37,7 +37,9 @@ function drupal_iterate {
for drupal in $drupals; do
# Ignore symlinks so sites are updated just once
if [ ! -h "$drupal" ] || [ ! -h "`readlink $drupal`" ]; then
- echo "Processing $drupal..."
+ if [ "$1" != "cron" ]; then
+ echo "Processing $drupal..."
+ fi
drush -l $drupal $*
fi
done