From 3b3af7ad0d1dd03eafb12c3743b80ab4bfcaa1d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cruz=20Monrreal=20II=C2=89?= Date: Thu, 24 Jan 2019 10:11:13 -0600 Subject: [PATCH] Fix for license check job. Somehow, having the '!' before a single command in a single line parses out the '!'. --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 923db6ebcd..e3d0a3a0ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -303,8 +303,10 @@ matrix: - NAME=licence_check script: - echo 'Checking that there is no GPL licence text in code' - - ! git grep -q --ignore-case "gnu general public"; - - ! git grep -q --ignore-case "gnu library general public"; + - | + ! git grep -q --ignore-case "gnu general public"; + - | + ! git grep -q --ignore-case "gnu library general public"; - env: - NAME=include_check