diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-05 16:39:27 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-05 16:39:27 -0300 |
commit | 070d785ab1f5a72ed52680b18a5120bb2c46c847 (patch) | |
tree | 19336516d152fcac874fa97febee37daeb312575 /librerelease | |
parent | 369245e8dbee7ad97acec087de77081627a255db (diff) | |
parent | 83dd1498e580510023b63611bb25feedd3699b8c (diff) |
Merge branch 'master' of git://ponape.local/libretools
Diffstat (limited to 'librerelease')
-rwxr-xr-x | librerelease | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/librerelease b/librerelease index c4d97c1..efb698e 100755 --- a/librerelease +++ b/librerelease @@ -118,7 +118,7 @@ else exit 1 fi -# Make the permissions of the packages 644 otherwize the user will get access +# Make the permissions of the packages 644 otherwise the user will get access # denied error when they try to download (rsync --no-perms doesn't seem to # work). find ${WORKDIR}/staging -type f -exec chmod 644 {} \; @@ -127,6 +127,7 @@ find ${WORKDIR}/staging -type d -exec chmod 755 {} \; # Get the synced files SYNCED_FILES=($(find ${WORKDIR}/staging -type f)) +msg "%s to upload" $(du -h -d 0 ${WORKDIR}/staging | tr "\t" " " | cut -d" " -f1) msg "Uploading packages..." rsync --recursive \ ${dryrun} \ |