From: Heiko Schlittermann (HS12-RIPE) Date: Tue, 18 Dec 2018 15:19:11 +0000 (+0100) Subject: stats_for_email: Do not auto-select the release directory X-Git-Tag: exim-4.92-RC3~1 X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=commitdiff_plain;h=11fb48b71048e9692c1d498bfc85a4829a3db09e stats_for_email: Do not auto-select the release directory --- diff --git a/release-process/scripts/stats_for_email b/release-process/scripts/stats_for_email index 0eb0c2981..45d06b6c1 100755 --- a/release-process/scripts/stats_for_email +++ b/release-process/scripts/stats_for_email @@ -1,16 +1,16 @@ #!/bin/sh -eu okay=false -if [ -d ../../release-process ] && [ "${PWD##*/}" = "pkgs" ]; then - okay=true # we are in right dir -elif [ -d release-process ]; then - b="$(find . -maxdepth 1 -name 'exim-packaging-*' | sort | tail -n 1)" - if [ ".$b" != "." ]; then - cd "$b/pkgs" - okay=true - fi -fi -if ! $okay; then +# if [ -d ../../release-process ] && [ "${PWD##*/}" = "pkgs" ]; then +# okay=true # we are in right dir +# elif [ -d release-process ]; then +# b="$(find . -maxdepth 1 -name 'exim-packaging-*' | sort | tail -n 1)" +# if [ ".$b" != "." ]; then +# cd "$b/pkgs" +# okay=true +# fi +# fi +# if ! $okay; then if [ -d "${1:?need a directory to look in}" ]; then cd "$1" shift @@ -18,7 +18,7 @@ if ! $okay; then printf "%s: %s\n" >&2 "$(basename "$0")" "where should I be looking" exit 1 fi -fi +# fi set $(find "${1:-.}" -name '*.asc' -prune -o -type f -print | cut -c 3- | sort)