summaryrefslogtreecommitdiff
path: root/toru-utils
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-03-16 21:21:28 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-03-16 21:21:28 -0300
commitb5c7d749c484eef82315872895d53b5cf7f97f66 (patch)
tree585645af6c27a9a7bc11a3b2b7891ff6baf79f3f /toru-utils
parent27b946270520befdb810dba04cfa0e7cab9a6bf9 (diff)
parentda785c8272457a70f21942bf4943bfc69f4fbeb8 (diff)
Merge branch 'fauno' of ssh://gparabola/libretools into fauno
Diffstat (limited to 'toru-utils')
-rwxr-xr-xtoru-utils9
1 files changed, 3 insertions, 6 deletions
diff --git a/toru-utils b/toru-utils
index bb0aef4..2488091 100755
--- a/toru-utils
+++ b/toru-utils
@@ -59,17 +59,14 @@ get_pkgbuilds() {
$QUIET || warning "Forcing upgrade"
# Get all PKGBUILDs
- pkgbuilds=($(find $@ -mindepth 2 -maxdepth 3 -type f -name 'PKGBUILD'))
-
+ extra=""
else
-
# Only find newer than lastsyncfile and read everything else from cache
- pkgbuilds=($(find $@ -mindepth 2 -maxdepth 3 -type f -name 'PKGBUILD' -newer ${LASTSYNCFILE}))
-
+ extra=" -newer ${LASTSYNCFILE}"
fi
# Return all PKGBUILDs found
- echo ${pkgbuilds[@]}
+ find $@ -mindepth 2 -maxdepth 3 -type f -name 'PKGBUILD' ${extra}
}
# End inmediately but print a useful message