From 5298075f4d4d12b6dad9b93f730dcdb233c209c9 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Mon, 7 May 2012 12:56:06 -0500 Subject: patch tool: Add useful status messages --- tools/patch-tool-mxe | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/patch-tool-mxe b/tools/patch-tool-mxe index aeb9593..208655a 100755 --- a/tools/patch-tool-mxe +++ b/tools/patch-tool-mxe @@ -72,8 +72,10 @@ function init_git { cd $gitsdir/$pkg_subdir && \ (git init; git add -A; git commit -m "init") > /dev/null - echo "Tagging distribution tarball state" + echo "Creating 'dist' tag for distribution tarball state" git tag dist + + echo "Repository ready in $gitsdir/$pkg_subdir" } function export_patch { @@ -92,7 +94,8 @@ function export_patch { echo '' git format-patch -p --stdout dist..HEAD | \ sed 's/^From: .*/From: MXE/g;' - ) > $mxedir/src/$pkg-1-fixes.patch + ) > $mxedir/src/$pkg-1-fixes.patch && \ + echo "Generated $mxedir/src/$pkg-1-fixes.patch" } function import_patch { -- cgit v0.12