2014-03-22 20:41:53 -04:00
|
|
|
@echo off
|
|
|
|
setlocal EnableDelayedExpansion
|
|
|
|
|
|
|
|
Color 0A
|
|
|
|
mode con: cols=78 lines=60
|
|
|
|
|
|
|
|
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%.
|
2014-03-22 22:05:16 -04:00
|
|
|
call print_seperator
|
|
|
|
|
2014-03-23 19:29:29 -04:00
|
|
|
echo Before we start the installation, here are some tips:
|
|
|
|
call print_tips
|
|
|
|
call print_seperator
|
|
|
|
|
2014-03-22 22:05:16 -04:00
|
|
|
call sign_license
|
2014-03-23 12:32:54 -04:00
|
|
|
|
|
|
|
call get_language
|
|
|
|
|
|
|
|
pause
|
2014-03-22 22:05:16 -04:00
|
|
|
|
2014-03-22 20:41:53 -04:00
|
|
|
endlocal
|