You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
216 B
13 lines
216 B
@echo off
|
|
if %1==--help goto help
|
|
if %1==-h goto help
|
|
if %1==-? goto help
|
|
goto run
|
|
|
|
:help
|
|
type %~dp0\scripts\help.txt
|
|
goto:eof
|
|
|
|
:run
|
|
powershell -c scripts\setup-msys2.ps1
|
|
.\scripts\msys2.cmd -c "./emacs-build.sh %*"
|
|
|