summaryrefslogtreecommitdiff
path: root/gerrit/auto-submit/git-breview
blob: 967584aa22e0ed6e42beb694754e849e8d28a1e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

if git-review -R; then
    rev=$(git rev-parse HEAD)
    host=$(git config -f .gitreview gerrit.host)
    port=$(git config -f .gitreview gerrit.port)
    ssh -p $port $host gerrit review --code-review=2 $rev
fi

# vim:set shiftwidth=4 softtabstop=4 expandtab: