diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-17 16:29:17 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-17 16:29:17 +0000 |
commit | f9961deeda4b571513993e2614b5ef49ec085518 (patch) | |
tree | b646d6bfc03d528fe741695d939c45bd73cde9f4 | |
parent | b9948b3ae90bc47897071afdbf48f26ef67083a7 (diff) | |
download | simplepkg-f9961deeda4b571513993e2614b5ef49ec085518.tar.gz simplepkg-f9961deeda4b571513993e2614b5ef49ec085518.tar.bz2 |
minor fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@670 04377dda-e619-0410-9926-eae83683ac58
-rw-r--r-- | trunk/src/createpkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/createpkg b/trunk/src/createpkg index 94469da..3115519 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -702,7 +702,7 @@ if [ $SIGN_PACKAGES -eq $on ]; then fi if [ ! -z "$SIGN_PACKAGES_USER" ]; then - su -c $SIGN_PACKAGES_USER -c "gpg --use-agent --armor -sb $SIGN_KEYID $PACKAGES_DIR/$PKG_NAME" + su $SIGN_PACKAGES_USER -c "gpg --use-agent --armor -sb $SIGN_KEYID $PACKAGES_DIR/$PKG_NAME" else gpg --use-agent --armor -sb $SIGN_KEYID $PACKAGES_DIR/$PKG_NAME fi |