summaryrefslogtreecommitdiff
path: root/release-process
diff options
context:
space:
mode:
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2018-12-18 16:19:11 +0100
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2018-12-18 16:20:11 +0100
commit11fb48b71048e9692c1d498bfc85a4829a3db09e (patch)
tree258f48877225387ed66d35a715309eaac2984c45 /release-process
parentfa287dc3638b0f282fba5302a0fc01ac07421f9f (diff)
downloadexim4-11fb48b71048e9692c1d498bfc85a4829a3db09e.tar.gz
stats_for_email: Do not auto-select the release directory
Diffstat (limited to 'release-process')
-rwxr-xr-xrelease-process/scripts/stats_for_email22
1 files changed, 11 insertions, 11 deletions
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)