1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-12 11:12:06 +00:00
iiab/scripts/test-pr

29 lines
413 B
Text
Raw Permalink Normal View History

2017-07-09 01:56:42 +00:00
#!/bin/bash
# PR #
PULL=""
# iiab jv tm gh
# optional repo where the PR lives default iiab
USER=
# PR in jvonau
case $USER in
jv)
USER=jvonau
;;
tm)
USER=tim-moody
;;
gh)
USER=georgejhunt
;;
*)
USER=iiab
;;
esac
cd /opt/iiab/iiab
wget https://github.com/$USER/iiab/pull/$PULL.diff -o /tmp/$PULL.diff
echo "patching..."
patch -p 1 -i $PULL.diff
rm /tmp/$PULL.diff