diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-09 19:46:31 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-09 19:46:31 +0000 |
commit | 5c2f26033fb7cc6f952dcb89423a0d69d5c73603 (patch) | |
tree | bac16e75fe65e808986b37caf529c0135b6a84bd | |
parent | 9253416c1af45b594f3252746aad5f2ee78821d4 (diff) | |
download | simplepkg-5c2f26033fb7cc6f952dcb89423a0d69d5c73603.tar.gz simplepkg-5c2f26033fb7cc6f952dcb89423a0d69d5c73603.tar.bz2 |
minor fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@645 04377dda-e619-0410-9926-eae83683ac58
-rw-r--r-- | trunk/conf/simplepkg.conf | 2 | ||||
-rw-r--r-- | trunk/src/createpkg | 2 | ||||
-rwxr-xr-x | trunk/src/simplaret | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/trunk/conf/simplepkg.conf b/trunk/conf/simplepkg.conf index 586ddfe..b10382c 100644 --- a/trunk/conf/simplepkg.conf +++ b/trunk/conf/simplepkg.conf @@ -160,7 +160,7 @@ SIGNATURE_CHECKING="0" DEPENDENCY_CHECKING="1" # Enabling this option (i.e, setting to "1" or "yes"), simplaret will -# donwload even # already applied patches, a good option when you plan +# donwload even already applied patches, a good option when you plan # to keep local copies of all needed patches for your system DOWNLOAD_EVEN_APPLIED_PATCHES="0" diff --git a/trunk/src/createpkg b/trunk/src/createpkg index f5b6328..e5c8edf 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -283,7 +283,7 @@ function repository_update { cd $cwd fi - mk_exit 0 + exit 0 } diff --git a/trunk/src/simplaret b/trunk/src/simplaret index cbf4543..43a34f6 100755 --- a/trunk/src/simplaret +++ b/trunk/src/simplaret @@ -1133,7 +1133,7 @@ case $1 in "--get-patches" | "get-patches") simplaret_get_patches ;; "--search" | "search") shift ; simplaret_req_arg $1 ; simplaret_search $* ;; "--get" | "get") shift ; simplaret_req_arg $1 ; simplaret_get $* ;; - "--purge" | "purge") shift ; simplaret_req_arg $1 simplaret_purge $* ;; + "--purge" | "purge") shift ; simplaret_req_arg $1 ; simplaret_purge $* ;; "--install" | "install") shift ; simplaret_req_arg $1 ; simplaret_install $* ;; "--remove" | "remove") shift ; simplaret_req_arg $1 ; simplaret_remove $* ;; "--help" | "help") simplaret_usage ;; |