separated recustomize function out as separate script. added bin.ant and bin.eclipse...
[feisty_meow.git] / scripts / rev_control / checkin.sh
1 #!/bin/bash
2
3 # checkin: checks in all the folders present in the REPOSITORY_LIST variable.
4
5 source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
6 source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
7
8 echo "Committing repositories at: $(date)"
9
10 if [ "$OS" != "Windows_NT" ]; then
11   # first get individual folders.
12   checkin_list $HOME /usr/local
13 else
14   checkin_list $HOME c:/ d:/ e:/ 
15 fi
16