better output yet
[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 FULL_LIST=" $(dirname $FEISTY_MEOW_APEX) $HOME "
13 if [ "$OS" == "Windows_NT" ]; then
14   FULL_LIST+=" c:/ d:/ e:/ "
15 fi
16
17 checkin_list $FULL_LIST
18 exit_on_error "revision control check-in of list: $FULL_LIST"
19
20 ##############
21
22 # regenerate the scripts after the check-in, since an update during check-in
23 # could mean we have a modified version of feisty meow is present.
24 regenerate
25
26 ##############
27