Changeset 1002

Show
Ignore:
Timestamp:
04/15/06 23:23:24 (2 years ago)
Author:
anarcat
Message:

corriger un typo: utiliser la variable "date" au lieu de "current_date" dans l'incrementation du serial number.

Closes: #641

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/update_domains.sh

    r955 r1002  
    173173    today=`date +%Y%m%d` 
    174174    # increment the serial number only if the date hasn't changed 
    175     if [ "$current_date" = "$today" ] ; then 
     175    if [ "$date" = "$today" ] ; then 
    176176        revision=$(($revision + 1)) 
    177177    else