Skip to content
Snippets Groups Projects
Commit 35953c20 authored by Ben Gamari's avatar Ben Gamari :turtle: Committed by Herbert Valerio Riedel
Browse files

patch-tool: Make commit less verbose

parent fd4bd11e
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ patch_pkg() {
else
local pkg_dir=packages/$pkg
git -C $pkg_dir apply $patch
git -C $pkg_dir commit -a -m "head.hackage.org patch"
git -C $pkg_dir commit -q -a -m "head.hackage.org patch"
fi
}
......@@ -75,7 +75,7 @@ unpack_pkg() {
cd $pkg_dir
git init
git add .
git commit -m "Initial commit"
git commit -q -m "Initial commit of $pkg"
git tag upstream
popd
add_pkg_dirs packages/$pkg_dir
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment