blob: 915bce43322265cf153c17b5231384f19702d99e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -e
set -u
# without setting the user, git does not allow to create a commit
git config --global user.email "verified@opnfv.org"
git config --global user.name "Dovetail"
cd /src/tempest
git am $(dirname $0)/0001-Allow-additional-properties-in-API-responses.patch
exit 0
|