mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: g/GDAL/GDAL-2.1.3-Python-2.7.13-without-intel.eb new file: i/ispc/ispc-1.9.1.eb new file: o/OSPRay/OSPRay-1.3.0.eb new file: p/ParaView/ParaView-5.1.2-intel-2017a-mpi-OSPRay.eb new file: p/ParaView/Paraview-5.1.2-intel-2017a-OSPRay.eb new file: s/Sen2Cor/Sen2Cor-2.3.1-Python-2.7.13.eb new file: s/Sen2Cor/Sen2Cor-2.3.1-Python-2.7.13.patch new file: v/VASP/VASP-5.4.4-intel-2017a-03.eb modified: v/VASP/VASP-5.4.4-intel-2017a.eb
21 lines
868 B
Diff
21 lines
868 B
Diff
--- setup.py.orig 2017-02-02 09:37:32.000000000 +0100
|
|
+++ setup.py 2017-06-19 11:12:03.788380266 +0200
|
|
@@ -35,7 +35,7 @@
|
|
def copyConfiguration():
|
|
sys.stdout.write('\nSEN2COR ' + version + ' setup script:\n')
|
|
sys.stdout.write('This will finish the configuration of the environment settings.\n')
|
|
- user_input = raw_input('\nOK to continue? [y/n]: ')
|
|
+ user_input = 'y'
|
|
if user_input == 'n':
|
|
return False
|
|
|
|
@@ -46,7 +46,7 @@
|
|
while True:
|
|
sys.stdout.write('\nPlease input a path for the sen2cor home directory:\n')
|
|
sys.stdout.write('default is: ' + SEN2COR_HOME + '\n')
|
|
- user_input = raw_input('Is this OK? [y/n]: ')
|
|
+ user_input = 'y'
|
|
if user_input == 'n':
|
|
SEN2COR_HOME = raw_input('New path: ')
|
|
sys.stdout.write('New path is: ' + SEN2COR_HOME + '\n')
|