diff options
-rwxr-xr-x | libremakepkg | 2 | ||||
-rwxr-xr-x | librerelease | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/libremakepkg b/libremakepkg index 7db0e3c..f7924f6 100755 --- a/libremakepkg +++ b/libremakepkg @@ -24,7 +24,7 @@ function copy_log { # copy logs if they exist - find "${CHROOTDIR}/${CHROOT}/build/" -name "*\.log" -exec cp {} ./ \; + find "${CHROOTDIR}/${CHROOT}/build/" -maxdepth 1 -name "*\.log" -exec cp {} ./ \; } diff --git a/librerelease b/librerelease index bac5b88..c113572 100755 --- a/librerelease +++ b/librerelease @@ -147,4 +147,7 @@ rsync --recursive \ msg "Removing packages from local [staging]" clean +msg "Running db-update on repos" +ssh ${PARABOLAHOST} dbscripts/db-update + exit 0 |