2 # this script reports files that are not checked in yet in a set of folders.
3 # it works with subversion only, since git handles new files well whereas
4 # subversion ignores them until you tell it about them. this script can take
5 # a directory as a parameter, but will default to the current directory.
6 # all the directories under the passed directory will be examined.
8 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
9 source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
14 if [ -z "$dir" ]; then
18 pushd "$dir" &>/dev/null
19 test_or_die "changing directory to: $dir"
20 tempfile=$(generate_rev_ctrl_filelist)
21 test_or_die "generating revision control file list"
24 perform_revctrl_action_on_file "$tempfile" do_report_new
25 test_or_die "running revision control report"