34 lines
No EOL
712 B
Batchfile
Executable file
34 lines
No EOL
712 B
Batchfile
Executable file
@echo off
|
|
setlocal EnableDelayedExpansion
|
|
|
|
Color 0A
|
|
mode con: cols=78 lines=55
|
|
|
|
call print_header
|
|
call print_dashed_seperator
|
|
|
|
call get_config version
|
|
call get_config author
|
|
call get_config copyright
|
|
echo Welcome to the automated Installation of the CodeCombat Dev. Environment!
|
|
echo v%version% authored by %author% and published by %copyright%.
|
|
call print_seperator
|
|
|
|
echo Before we start the installation, here are some tips:
|
|
call print_tips
|
|
call print_seperator
|
|
|
|
call sign_license
|
|
|
|
call get_language
|
|
|
|
call download_and_install_applications
|
|
|
|
call get_local_text end-succesfull
|
|
call get_local_text end-thankyou
|
|
echo %end_succesfull%
|
|
echo %end_thankyou%
|
|
|
|
call print_exit
|
|
|
|
endlocal |