Commit fd04791f authored by Aaron Griffin's avatar Aaron Griffin
Browse files

archrelease modifications to auto-commit handling

parent 38dc2efc
Loading
Loading
Loading
Loading
+15 −10
Original line number Diff line number Diff line
@@ -7,13 +7,18 @@ fi

if [ ! -d ../repos/$1 ]; then
    pushd ..
	svn copy trunk ../repos/$1
    svn copy trunk repos/$1
    svn commit -m "archrelease: new repo $1"
    popd
else
    svnmerge merge ../repos/$1
fi

    pushd ..
    if [ -f trunk/svnmerge-commit-message.txt ]; then
        svn commit -F trunk/svnmerge-commit-message.txt
        rm trunk/svnmerge-commit-message.txt
    else
        echo "Nothing to commit"
    fi
    popd
rm svnmerge-commit-message.txt
fi