blob: ce4b03bd0ee4054dd8b18e2cf7e0fda25c193ecd [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Zelalem917b43e2020-08-04 11:39:55 -05002#
Leonardo Sandoval579c7372020-10-23 15:23:32 -05003# Copyright (c) 2019-2020 Arm Limited. All rights reserved.
Zelalem917b43e2020-08-04 11:39:55 -05004#
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