patch tool: Add useful status messages

pull/44/merge
Ryan Pavlik 12 years ago committed by Mark Brand
parent 63917a89b3
commit 5298075f4d

@ -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 {

Loading…
Cancel
Save