~alan-griffiths/miral/debug

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -eux

# Skip this test inside qtmir-gles package as the patch is already applied.
[ "$(dpkg-parsechangelog --show-field Source)" = "qtmir" ] || exit 0

QUILT_EXIT=0
export QUILT_PATCHES=debian/gles-patches

quilt push -a || QUILT_EXIT=$?
quilt pop -a

exit $QUILT_EXIT