Changeset 16032 for lang/gauche

Show
Ignore:
Timestamp:
07/19/08 19:49:24 (4 months ago)
Author:
kiyoka
Message:

Fixed bug: convert illegal .sexp file.

Location:
lang/gauche/oldtype/trunk/bin
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/gauche/oldtype/trunk/bin/batch.sh

    r15903 r16032  
    2929 
    3030function task () { 
     31  echo [[info]] task start 
    3132  ${OT_HOME}/bin/update.sh && 
    3233  ${OT_HOME}/bin/ot_AllPages && 
    3334  ${OT_HOME}/bin/ot_RecentChanges && 
    3435  ${OT_HOME}/command/blog && 
    35   ${OT_HOME}/bin/convert.sh && 
    3636  ${OT_HOME}/bin/add.sh && 
    37   ${OT_HOME}/bin/commit.sh 
     37  ${OT_HOME}/bin/commit.sh && 
     38  ${OT_HOME}/bin/update.sh && 
     39  ${OT_HOME}/bin/convert.sh 
    3840  #run-parts ${OT_HOME}/hook 
    39   echo -n [info] sleep... 
    40   sleep 1 
     41  echo -n [[info]] sleep... 
     42  sleep 2 
    4143  echo wakeup 
    4244} 
  • lang/gauche/oldtype/trunk/bin/update.sh

    r13237 r16032  
    2424cd        ${OT_EDITHOME} 
    2525 
     26  prev=`_svn t info   | grep Revision: | awk '{ print $2; }'` 
    2627  _svn t update 
     28  curr=`_svn t info   | grep Revision: | awk '{ print $2; }'` 
    2729 
    2830popd 
     31 
     32echo "[[info]] revision[$prev]=>[$curr]" 
     33[ "$prev" != "$curr" ] 
     34exit $?