~lukas-kde/miral/shellchrome-windowinfo

« back to all changes in this revision

Viewing changes to miral-qt/tests/convert-to-gles.sh

  • Committer: Larry Price
  • Date: 2016-09-13 16:19:29 UTC
  • mto: (330.4.1 miral)
  • mto: This revision was merged to the branch mainline in revision 352.
  • Revision ID: larry.price@canonical.com-20160913161929-vs9ka1capmljq1es
Removing miral-qt from release branch, updating copyright file, and adding GPL3 license to root dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -eux
4
 
 
5
 
# Skip this test inside qtmir-gles package as the patch is already applied.
6
 
[ "$(dpkg-parsechangelog --show-field Source)" = "qtmir" ] || exit 0
7
 
 
8
 
QUILT_EXIT=0
9
 
export QUILT_PATCHES=debian/gles-patches
10
 
 
11
 
quilt push -a || QUILT_EXIT=$?
12
 
quilt pop -a
13
 
 
14
 
exit $QUILT_EXIT