Skip to content

Commit dae2d97

Browse files
committed
update chmod in dockerized execution #1538
1 parent abb8e04 commit dae2d97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/circleci/run_builddocs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ source activate nipypetests-2.7
77
mkdir -p /scratch/docs
88
set -o pipefail && cd /root/src/nipype/doc && make html 2>&1 | tee /scratch/builddoc.log
99
cp -r /root/src/nipype/doc/_build/html/* /scratch/docs/
10-
chmod 775 -R /scratch/docs
11-
chmod 775 /scratch/builddoc.log
10+
chmod 777 -R /scratch/docs
11+
chmod 777 /scratch/builddoc.log
1212
cat /scratch/builddoc.log && if grep -q "ERROR" /scratch/builddoc.log; then false; else true; fi

docker/circleci/run_nosetests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ source activate nipypetests-2.7
66
cd /root/src/nipype
77
mkdir -p /scratch/nose
88
nosetests --with-doctest -c /root/src/nipype/.noserc --logging-level=DEBUG --verbosity=3 --xunit-file="/scratch/nosetests.xml"
9-
chmod 775 /scratch/nosetests.xml
10-
chmod 775 -R /scratch/nose
9+
chmod 777 /scratch/nosetests.xml
10+
chmod 777 -R /scratch/nose

0 commit comments

Comments
 (0)