#!/bin/bash export SCRIPT=$(basename $0) usage() { echo "Usage: $SCRIPT [-q] [--continue-merge] [--review-merge] *" exit 1 } export -f usage . ${0%/*}/include/url.inc if [ -z "$source_version" ] then echo "Error: Could not determine branch version -- do you call this script from a SVN repository checkout?" >&2 exit 2 fi opt= while true do case $1 in --placebo-merge) echo "Error: You are not allowed to use --placebo-merge when committing to the testing branch" >&2 exit 3 ;; -*) opt+=" $1" ;; *) break ;; esac shift done ${0%/*}/merge-changesets $opt branches/$source_version/trunk/src branches/$source_version/testing/src FFL "" "$@"