2022-09-26 15:49:11 +02:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
@REM Delete the post-activate hook from the old installer
|
2022-09-26 19:32:03 +02:00
|
|
|
if exist "installer\etc\conda\activate.d\post_activate.bat" (
|
|
|
|
echo. > installer\etc\conda\activate.d\post_activate.bat
|
|
|
|
)
|
2022-09-26 15:49:11 +02:00
|
|
|
|
2022-09-15 11:44:48 +02:00
|
|
|
@call installer\Scripts\activate.bat
|
|
|
|
|
|
|
|
@call conda-unpack
|
|
|
|
|
|
|
|
@call conda --version
|
|
|
|
@call git --version
|
|
|
|
|
2022-09-26 15:49:11 +02:00
|
|
|
@cd installer
|
|
|
|
|
2022-09-26 16:41:33 +02:00
|
|
|
@call ..\scripts\on_env_start.bat
|
2022-09-15 11:44:48 +02:00
|
|
|
|
2022-09-26 16:42:55 +02:00
|
|
|
@pause
|