37538b6b7f6393dda3fbcfd84137bc98919063de
[feisty_meow.git] / scripts / rev_control / rgetem.sh
1 #!/bin/bash
2 # a simple script for updating a set of folders from subversion or git.
3 # this can take a directory as parameter, but will default to the current
4 # working directory.  all the directories under the passed directory will
5 # 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 ##############
11
12 dir="$1"; shift
13 if [ -z "$dir" ]; then
14   dir=.
15 fi
16
17 pushd "$dir" &>/dev/null
18 test_or_die "changing to directory: $dir"
19 tempfile=$(generate_rev_ctrl_filelist)
20 popd &>/dev/null
21
22 perform_revctrl_action_on_file "$tempfile" do_update
23 test_or_die "running revision control update"
24