Commit 2afa617 1 parent 81f58d5 commit 2afa617 Copy full SHA for 2afa617
File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ for %%a in (%v_paths%) do (
27
27
28
28
IF " %v_conda_path% " == " " (
29
29
echo anaconda3/miniconda3 not found. Install from here https://docs.conda.io/en/latest/miniconda.html
30
+ pause
30
31
exit /b 1
31
32
)
32
33
@@ -48,10 +49,12 @@ echo Previous environment.yaml hash: %v_last_hash%
48
49
if " %v_last_hash% " == " %v_cur_hash% " (
49
50
echo environment.yaml unchanged. dependencies should be up to date.
50
51
echo if you still have unresolved dependencies, delete " z_version_env.tmp"
52
+ if not defined AUTO pause
51
53
) else (
52
54
echo environment.yaml changed. updating dependencies
53
55
call conda env create --name " %v_conda_env_name% " -f environment.yaml
54
56
call conda env update --name " %v_conda_env_name% " -f environment.yaml
57
+ if not defined AUTO pause
55
58
)
56
59
57
60
:: cmd /k
Original file line number Diff line number Diff line change @@ -38,13 +38,15 @@ for %%a in (%v_paths%) do (
38
38
39
39
IF " %v_conda_path% " == " " (
40
40
echo anaconda3/miniconda3 not found. Install from here https://docs.conda.io/en/latest/miniconda.html
41
+ pause
41
42
exit /b 1
42
43
)
43
44
44
45
:CONDA_FOUND
45
46
46
47
if not exist " z_version_env.tmp" (
47
48
:: first time running, we need to update
49
+ set AUTO = 1
48
50
call " update_to_latest.cmd"
49
51
)
50
52
Original file line number Diff line number Diff line change @@ -38,13 +38,15 @@ for %%a in (%v_paths%) do (
38
38
39
39
IF " %v_conda_path% " == " " (
40
40
echo anaconda3/miniconda3 not found. Install from here https://docs.conda.io/en/latest/miniconda.html
41
+ pause
41
42
exit /b 1
42
43
)
43
44
44
45
:CONDA_FOUND
45
46
46
47
if not exist " z_version_env.tmp" (
47
48
:: first time running, we need to update
49
+ set AUTO = 1
48
50
call " update_to_latest.cmd"
49
51
)
50
52
You can’t perform that action at this time.
0 commit comments