mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

deleted: a/Anaconda2/Anaconda2-4.4.0.eb deleted: a/Anaconda3/Anaconda3-2019.10.eb deleted: a/Anaconda3/Anaconda3-4.4.0.eb deleted: a/Anaconda3/Anaconda3-5.3.1.eb deleted: a/Autotools/Autotools-20150215-GCC-6.3.0-2.27.eb deleted: a/Autotools/Autotools-20170619.eb deleted: a/Autotools/Autotools-20180311.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')
|