From 2fe0d7347534e5a9fb496bc3ad213ab6da4ec984 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 23 Dec 2018 11:22:44 +0000 Subject: [PATCH] Intel C++ CI testing: Invoke installer via bash as it doesn't have executable permissions set by default. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8b05ac51..fc77cb2a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ matrix: env: TOOLSET=intel COMPILER=icpc CXXSTD=03,11 TEST_INTEL=1 before_install: - wget -q 'https://raw.githubusercontent.com/nemequ/icc-travis/master/install-icc.sh' - - ./install-icc.sh icc + - bash ./install-icc.sh icc after_script: - '[[ ! -z "${INTEL_INSTALL_PATH}" ]] && uninstall_intel_software'