diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-03 00:00:50 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-03 00:00:50 +0000 |
commit | fe9a92e6c42897e36884a3c4b5232ee835549370 (patch) | |
tree | f5ba03ad0a97bb5d3481033e1ec24e22ba05a495 | |
parent | 272c8cb58ecfc69b7ae4f783a2555dc4bfc6fb4c (diff) | |
download | simplepkg-fe9a92e6c42897e36884a3c4b5232ee835549370.tar.gz simplepkg-fe9a92e6c42897e36884a3c4b5232ee835549370.tar.bz2 |
minor fix at commit_changes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@626 04377dda-e619-0410-9926-eae83683ac58
-rw-r--r-- | trunk/lib/common.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh index b242d29..7d556fb 100644 --- a/trunk/lib/common.sh +++ b/trunk/lib/common.sh @@ -717,6 +717,7 @@ function commit_changes { cd $repos if [ ! -z "$1" ]; then if tmpfile=`mktemp -t simplepkg_commit.XXXXXX`; then + chown_svn $tmpfile && chgrp_svn $tmpfile echo $* > $tmpfile su_svn commit -F $tmpfile rm -f $tmpfile |