diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-05 19:19:11 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-05 19:19:11 +0000 |
commit | 63419f885e6c66d8919ee3698836ca3c0c34c35e (patch) | |
tree | a69a905d80508fc32c941d03d294a197e5621a5b /trunk/src | |
parent | 10d88faa8b4f08d4f9a572ad22a2065cc03410b9 (diff) | |
download | simplepkg-63419f885e6c66d8919ee3698836ca3c0c34c35e.tar.gz simplepkg-63419f885e6c66d8919ee3698836ca3c0c34c35e.tar.bz2 |
createpkg: fix on repository status
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@641 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src')
-rw-r--r-- | trunk/src/createpkg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/trunk/src/createpkg b/trunk/src/createpkg index 98dde1f..554e8e1 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -295,6 +295,12 @@ function repository_status { cd $cwd fi + if [ -d "$NOARCH_REPOS/.svn" ]; then + cwd="`pwd`" + cd $NOARCH_REPOS && su_svn status + cd $cwd + fi + exit 0 } |