diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-12-18 10:02:53 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-12-18 10:02:53 +0000 |
commit | cbaf094acd891584a90d1dc3223532d4f3ee36b3 (patch) | |
tree | 93827f36d4817d273ab98676e93c4d5bceff1924 | |
parent | Add ability for a patchset to tell if the patch is required, and to give a sp... (diff) | |
download | autoepatch-cbaf094acd891584a90d1dc3223532d4f3ee36b3.tar.gz autoepatch-cbaf094acd891584a90d1dc3223532d4f3ee36b3.tar.bz2 autoepatch-cbaf094acd891584a90d1dc3223532d4f3ee36b3.zip |
Announce which patchset and on which target we're handling every time.
svn path=/trunk/; revision=8
-rwxr-xr-x | autoepatch.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autoepatch.sh b/autoepatch.sh index 0f666e2..ffa12af 100755 --- a/autoepatch.sh +++ b/autoepatch.sh @@ -47,6 +47,8 @@ main() { [[ -z ${targets} ]] && exit 0 while read target; do + einfo "Testing ${patchset##*/} on ${target##$(pwd)/} ..." + for patch in "${patchset}"/*.patch; do if try_patch "${target}" "${patch}"; then PATCH_APPLIED="yes" |