source code of /bump

Last modified
Lines 17

Parent directory Download CGIread sitemap Main page

Quick links: (none)

  1. #!/bin/sh
  2. if [ $# -ne 4 ]; then
  3.     cat <<__EOF__ >&2
  4. ./bump <version> <date> <windows-version> <windows-date>
  5. eg. /bump 0.5.3 2018-10-07 26 2018-09-25
  6. __EOF__
  7.     exit 1
  8. else
  9.     projects/anonymine/index.html.src.sh $1 $2 $3 $4 >projects/anonymine/index.html.src
  10.     make
  11.     git add projects/anonymine/index.html projects/anonymine/index.html.src
  12.     git commit -m "Bumped anonymine to $1 $2 ($3 $4)"
  13.     (cd archive/anonymine; ./update; cd ../..)
  14. fi