From c83b2766e2a5a8adcec52fbc00f1741ffbfbb939 Mon Sep 17 00:00:00 2001 From: PullRequestOpen <57924615+PullRequestOpen@users.noreply.github.com> Date: Fri, 6 Dec 2019 10:25:54 -0600 Subject: [PATCH] Update travis-install.py Insterted `print(' '.join(cmake_cmd))` --- tools/ci/travis-install.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ci/travis-install.py b/tools/ci/travis-install.py index f1590d389..a2b1b6175 100644 --- a/tools/ci/travis-install.py +++ b/tools/ci/travis-install.py @@ -53,6 +53,7 @@ def install(omp=False, mpi=False, phdf5=False, dagmc=False): # Build and install cmake_cmd.append('..') + print(' '.join(cmake_cmd)) subprocess.check_call(cmake_cmd) subprocess.check_call(['make', '-j4']) subprocess.check_call(['sudo', 'make', 'install'])