You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
COMMIT=$1
|
|
INTEL=intel
|
|
DIN=${INTEL}/drm-intel-nightly
|
|
|
|
git fetch ${INTEL}
|
|
git merge-base --is-ancestor ${DIN} ${COMMIT} || {
|
|
echo Tree is out of date
|
|
exit 1
|
|
}
|
|
|
|
git send-email --to intel-gfx-trybot@lists.freedesktop.org --suppress-cc=all ${DIN}..${COMMIT}
|