Skip to content
Snippets Groups Projects
Commit 91f04d00 authored by George Kadianakis's avatar George Kadianakis
Browse files

Merge branch 'tor-github/pr/1165'

parents ab1f82ea 59e523f0
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (developer tooling):
- Only log git script changes in post-merge script when merge was to the
master branch. Fixes bug 31040; bugfix on 0.4.1.1-alpha.
......@@ -35,6 +35,12 @@ check_for_script_update() {
fi
}
cur_branch=$(git rev-parse --abbrev-ref HEAD)
if [ "$cur_branch" != "master" ]; then
echo "post-merge: Not a master branch. Skipping."
exit 0
fi
check_for_diffs "pre-push"
check_for_diffs "pre-commit"
check_for_diffs "post-merge"
......
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