diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-01-22 23:32:00 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-01-22 23:32:00 -0300 |
commit | 0f72189f9a62af346592ce54a55810f973d8d7ed (patch) | |
tree | 25616354e16a021f6fef2e895fc69ec0af9116be /fullpkg-find | |
parent | 787ef61e1997deeda97e055f7f0fe27a1b7ab2b5 (diff) |
Quicker is_built, only one call to pacman
time shows this version is 1s long against 5s from before
Diffstat (limited to 'fullpkg-find')
-rwxr-xr-x[-rw-r--r--] | fullpkg-find | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fullpkg-find b/fullpkg-find index d253913..8c0c063 100644..100755 --- a/fullpkg-find +++ b/fullpkg-find @@ -47,7 +47,7 @@ find_deps() { fi fi - if is_built "${pkgbase}>=${fullver}"; then + if is_built "${pkgbase}" "${fullver}"; then exit 0 # pkg is built and updated fi |