From 5bd7863c4ddcaabe8b277748d078e188e8198949 Mon Sep 17 00:00:00 2001
From: Jean-Michel Picod <jmichel@google.com>
Date: Thu, 6 Feb 2020 16:34:34 +0100
Subject: [PATCH] Fix run_desktop_tests.sh script

The script begins with `set -eux` and therefore will fail when using an
undefined variable. This is the case with `TRAVIS_OS_NAME` outside of
Travis.
---
 run_desktop_tests.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/run_desktop_tests.sh b/run_desktop_tests.sh
index 2e7cc80..a4682b2 100755
--- a/run_desktop_tests.sh
+++ b/run_desktop_tests.sh
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-set -eux
+set -ex
 
 echo "Checking formatting..."
 cargo fmt --all -- --check
-- 
GitLab