diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-09-07 11:20:47 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-09-07 11:20:47 -0300 |
commit | b8eaf0cced1693e51d89db691664e66509f7549b (patch) | |
tree | e8443a50f2c72218a49bbd26feeaa9bda050225d /librerelease | |
parent | 941527868d956c45f9e90714aee6b668a5ce28ab (diff) |
Added untested librerelease dry-run
Diffstat (limited to 'librerelease')
-rwxr-xr-x | librerelease | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/librerelease b/librerelease index 5283114..0bad896 100755 --- a/librerelease +++ b/librerelease @@ -34,6 +34,7 @@ function usage { echo "$(gettext " -h this message.")" echo "$(gettext " -l only list packages but not upload them.")" echo "$(gettext " -c clean packages on $WORKDIR/staging.")" + echo "$(gettext " -n dry-run")" } function list_packages { @@ -52,16 +53,18 @@ function clean_non_packages { -delete } -# Clean everything +# Clean everything if not on dry-run mode function clean { + [ -z ${dryrun} ] && \ find ${WORKDIR}/staging/ -type f -delete } -while getopts 'hlc' arg; do +while getopts 'hlcn' arg; do case $arg in h) usage; exit 0 ;; l) list_packages; exit 0 ;; c) clean; exit $? ;; + n) dryrun="--dry-run" ;; esac done @@ -72,6 +75,7 @@ done clean_non_packages msg "Uploading packages..." rsync --recursive \ + ${dryrun} \ --copy-links \ --hard-links \ --partial \ |