From 91e59f3ebcfe0b824bd2ecba743ec25c41430427 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 23 Aug 2016 20:18:33 -0400 Subject: Remove or silence 2to3 execution (#55) --- pyraf/build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pyraf/build.sh') diff --git a/pyraf/build.sh b/pyraf/build.sh index 8295030..3974e86 100644 --- a/pyraf/build.sh +++ b/pyraf/build.sh @@ -5,7 +5,11 @@ fi if [[ $PY3K > 0 ]]; then set +e - 2to3 -w . + echo Running 2to3... + 2to3 -w . &>/dev/null + if [[ $? != 0 ]]; then + echo "ERROR: 2to3 technically failed!" + fi fi python setup.py install || exit 1 -- cgit