diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-28 00:27:16 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-28 00:27:16 +0000 |
commit | 4ed659892de9efb0e7a898274ac33bf58572929f (patch) | |
tree | f0a1157e072383f607f9833af97de47dd7607c9f /trunk/src | |
parent | 292a00b1207c07a6795ec0121a7a65eb56e02d9c (diff) | |
download | simplepkg-4ed659892de9efb0e7a898274ac33bf58572929f.tar.gz simplepkg-4ed659892de9efb0e7a898274ac33bf58572929f.tar.bz2 |
fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@565 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src')
-rw-r--r-- | trunk/src/createpkg | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/trunk/src/createpkg b/trunk/src/createpkg index 42c4043..13796a3 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -617,11 +617,6 @@ if [ $MOVE_BIN_PACKAGE -eq $on ]; then fi -# Install package -if [ "$INSTALL" -eq $on ]; then - upgradepkg --install-new $NEW_REPOS/$PKG_NAME -fi - # Update repository FILELIST.TXT, ... ( @@ -651,6 +646,11 @@ fi ) +# Install package +if [ "$INSTALL" -eq $on ]; then + upgradepkg --install-new $NEW_REPOS/$PKG_NAME +fi + echo "Package saved at $NEW_REPOS/$PKG_NAME" exit $EXIT_CODE |