Skip to content

Commit 31ab61e

Browse files
cmonrCruz Monrreal II
authored and
Cruz Monrreal II
committed
Fix for license check job.
Somehow, having the '!' before a single command in a single line parses out the '!'.
1 parent 615ed31 commit 31ab61e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,10 @@ matrix:
303303
- NAME=licence_check
304304
script:
305305
- echo 'Checking that there is no GPL licence text in code'
306-
- ! git grep -q --ignore-case "gnu general public";
307-
- ! git grep -q --ignore-case "gnu library general public";
306+
- |
307+
! git grep -q --ignore-case "gnu general public";
308+
- |
309+
! git grep -q --ignore-case "gnu library general public";
308310
309311
- env:
310312
- NAME=include_check

0 commit comments

Comments
 (0)