#!/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
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)