Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / rev_control / rev_checkin.sh
diff --git a/scripts/rev_control/rev_checkin.sh b/scripts/rev_control/rev_checkin.sh
deleted file mode 100644 (file)
index 808f21a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-# checks in the updated files in a set of folders checked out from subversion
-# or git.  this can take a directory as parameter, but will default to the
-# current working directory.  all the directories under the passed directory
-# will be examined.
-
-dir="$1"; shift
-if [ -z "$dir" ]; then
-  dir=.
-fi
-
-source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
-
-pushd "$dir" &>/dev/null
-tempfile=$(generate_rev_ctrl_filelist)
-popd &>/dev/null
-
-perform_revctrl_action_on_file "$tempfile" do_checkin
-