Changeset 37260
- Timestamp:
- 2023-02-03T16:18:17+13:00 (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gs3-installations/eurovision-lod/trunk/sites/eurovision/collect/eurovision/prepare/03-GEN-VOTING-METADATA.sh
r35935 r37260 5 5 prep_dir=voting-excel 6 6 7 if [ ! -d "./$my_python" ] ; then7 if [ "x$PYTHON3_HOME" = "x" ] && [ ! -d "./$my_python" ] ; then 8 8 echo "" 1>&2 9 9 echo "Failed to find: ./$my_python" 1>&2 … … 48 48 exit_status=0 49 49 50 source ./$my_python/bin/activate 50 if [ "x$PYTHON3_HOME" = "x" ] ; then 51 source ./$my_python/bin/activate 52 fi 51 53 52 54 $prep_dir/xlsx-fromcountry-jsonmetadata.py \ … … 100 102 101 103 102 deactivate 104 if [ "x$PYTHON3_HOME" = "x" ] ; then 105 deactivate 106 fi 103 107 104 108 if [ $exit_status != 0 ] ; then
Note:
See TracChangeset
for help on using the changeset viewer.