mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 12:39:08 +01:00
14 lines
245 B
Bash
14 lines
245 B
Bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
cd src
|
|
|
|
set -o verbose
|
|
|
|
if [ ! -f powercycle_ip_address.yml ]; then
|
|
exit 0
|
|
fi
|
|
|
|
activate_venv
|
|
$python buildscripts/resmoke.py powercycle save-diagnostics
|