dc05cf47e1c8655461a9aea134d01d30405e2d5c
[feisty_meow.git] / scripts / rev_control / rcheckin.sh
1 #!/bin/bash
2 # checks in the updated files in a set of folders checked out from subversion
3 # or git.  this can take a directory as parameter, but will default to the
4 # current working directory.  all the directories under the passed directory
5 # will be examined.
6
7 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
8 source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
9
10 save_terminal_title
11
12 ##############
13
14 dir="$1"; shift
15 if [ -z "$dir" ]; then
16   dir=.
17 fi
18
19 pushd "$dir" &>/dev/null
20 exit_on_error "changing to directory: $dir"
21 tempfile=$(generate_rev_ctrl_filelist)
22 exit_on_error "generating revision control file list"
23 popd &>/dev/null
24
25 perform_revctrl_action_on_file "$tempfile" do_revctrl_checkin
26 exit_on_error "doing a check-in on: $tempfile"
27
28 restore_terminal_title