We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2891be commit 5b93067Copy full SHA for 5b93067
docker/circleci/run_examples.sh
@@ -12,7 +12,8 @@ echo 'log_to_file = true' >> /root/.nipype/nipype.cfg
12
echo 'log_directory = /scratch/logs/' >> /root/.nipype/nipype.cfg
13
14
coverage run /root/src/nipype/tools/run_examples.py $@
15
-tmp_var=$( IFS=$' '; echo "${@[*]}" )
+arr=$@
16
+tmp_var=$( IFS=$' '; echo "${arr[*]}" )
17
coverage xml -o "/scratch/smoketest_${tmp_var//[^A-Za-z0-9_-]/_}.xml"
18
19
chmod 777 -R /scratch/logs
0 commit comments