From 481748c279e0ea021d8a192c244db680a86874c1 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Sat, 7 Sep 2019 11:56:52 +0000 Subject: [PATCH] Make CI output Makefile commands This is good for debugging Makefiles on systems I don't have (eg. macOS) End users will not be affected by this, and CI provides a persistent log so clobbering isn't much of an issue. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4607e17b..90511425 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,8 @@ language: c sudo: required install: - ./.travis-deps.sh - - make - - sudo make install + - make Q= + - sudo make install Q= os: - linux - osx