Merge branch 'development' into 47-save-restart-information-in-hdf5

This commit is contained in:
Vitesh Shah 2018-09-26 11:45:54 +02:00
commit 66f7244bbe
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
v2.0.2-565-g59043d58
v2.0.2-580-gc1c7283e

View File

@ -1,8 +1,8 @@
#! /usr/bin/env bash
if [ $1x != 3to2x ]; then
echo 'python2.7 to python'
find . -name '*.py' | xargs sed -i 's/usr\/bin\/env python2.7/usr\/bin\/env python/g'
find . -name '*.py' -type f | xargs sed -i 's/usr\/bin\/env python2.7/usr\/bin\/env python/g'
else
echo 'python to python2.7'
find . -name '*.py' | xargs sed -i 's/usr\/bin\/env python/usr\/bin\/env python2.7/g'
find . -name '*.py' -type f | xargs sed -i 's/usr\/bin\/env python/usr\/bin\/env python2.7/g'
fi