Projet

Général

Profil

Paste
Télécharger (500 octets) Statistiques
| Branche: | Révision:

root / bin / releases_info_d7.sh @ d6b9e174

1
#!/bin/sh
2
PATH=/usr/local/bin:/usr/bin:/bin
3
##############
4
#Send a mail with following infos:
5
#- version of a module or theme that exists in sites/*
6
#- all versions that are available for same project on drupal.org
7
##############
8
#modules
9
cd /users/guest/assos/htmltest/sites/all/modules
10
for x in $(ls -1); do
11
  if [ -d $x ]; then
12
    drush pm-releases $x
13
  fi
14
done
15
#themes
16
cd /users/guest/assos/htmltest/sites/all/themes
17
for x in $(ls -1); do
18
  if [ -d $x ]; then
19
    drush pm-releases $x
20
  fi
21
done