blob: 7d3d95464d9f7a38940ddbf0c7e576d30e1e18f4 [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Zelalem917b43e2020-08-04 11:39:55 -05002#
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