blob: 796e29a1548a0f21b6c9c5583d4a7aa11d01ec71 [file] [log] [blame]
Zelalem917b43e2020-08-04 11:39:55 -05001#!/bin/bash
2#
3# Copyright (c) 2019, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8# Install pygerrit2 if needed
9python3 -c "from pygerrit2 import GerritRestAPI, HTTPBasicAuth"
10if [ $? != 0 ]
11then
12 yes | pip3 install pygerrit2
13fi
14
15# Run bot
16cd $(dirname "$0")
17python3 gerrit_bot.py --user $1 --password $2 --maintainers $3