blob: 1b230e222b39f7e25c046ca3d7c85996cf7dfe08 [file] [log] [blame]
#! /bin/sh
if [ ! -f .version ]
then
echo 0 > .version
fi
cycle=`cat .version`
cycle=`expr $cycle + 1`
if [ $cycle -gt 99 ]
then
cycle=0
fi
echo $cycle > .version