Confirmed users
4,293
edits
No edit summary |
mNo edit summary |
||
| Line 3: | Line 3: | ||
set > $logfile | set > $logfile | ||
# create a sha1sum for every file on the path | # create a sha1sum for every file on the path | ||
echo >> $logfile; echo PATH: >> $logfile (dirs=`echo $PATH | sed 's/:/ /g'`; for dir in $dirs; do if [[ '.' != $dir ]]; then find $dir -maxdepth 1 ! -type d | perl -nle 'system("openssl","dgst","-sha1",$_)'; fi; done) 2>&1 | tee -a $logfile | echo >> $logfile; echo PATH: >> $logfile; (dirs=`echo $PATH | sed 's/:/ /g'`; for dir in $dirs; do if [[ '.' != $dir ]]; then find $dir -maxdepth 1 ! -type d | perl -nle 'system("openssl","dgst","-sha1",$_)'; fi; done) 2>&1 | tee -a $logfile | ||
# for Windows, sha1sum every file on INCLUDE | # for Windows, sha1sum every file on INCLUDE | ||
echo >> $logfile; echo INCLUDE: >> $logfile (dirs=`echo $INCLUDE | sed 's/;/ /g'`; for dir in $dirs; do if [[ '.' != $dir ]]; then find $dir -maxdepth 1 ! -type d | perl -nle 'system("openssl","dgst","-sha1",$_)'; fi; done) 2>&1 | tee -a $logfile | echo >> $logfile; echo INCLUDE: >> $logfile; (dirs=`echo $INCLUDE | sed 's/;/ /g'`; for dir in $dirs; do if [[ '.' != $dir ]]; then find $dir -maxdepth 1 ! -type d | perl -nle 'system("openssl","dgst","-sha1",$_)'; fi; done) 2>&1 | tee -a $logfile | ||
* Remove SeaMonkey nightly l10n builds (cltbld@stage) | * Remove SeaMonkey nightly l10n builds (cltbld@stage) | ||
cd /pub/mozilla.org/seamonkey/nightly/2008/ | cd /pub/mozilla.org/seamonkey/nightly/2008/ | ||