tasty revision to load feisty for full use
[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/launch_feisty_meow.sh"
6 source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
7
8 ##############
9
10 echo "committing repositories at: $(date)"
11
12 if [ "$OS" != "Windows_NT" ]; then
13   # first get individual folders.
14   checkin_list $HOME /usr/local
15 else
16   checkin_list $HOME c:/ d:/ e:/ 
17 fi
18
19 ##############
20
21 # regenerate the scripts after checking in, since this could mean a modified version
22 # of feisty meow is present.
23 regenerate
24
25 ##############
26