Browse Source

Use my default build options when no option is passed to emacs-build.cmd

tmp/comercial-emacs
Juan Jose Garcia-Ripoll 4 years ago
parent
commit
7f52a9ee74
  1. 5
      emacs-build.cmd

5
emacs-build.cmd

@ -1,9 +1,14 @@
@echo off @echo off
if x%1 == x goto default
if %1==--help goto help if %1==--help goto help
if %1==-h goto help if %1==-h goto help
if %1==-? goto help if %1==-? goto help
goto run goto run
:default
emacs-build.cmd --clone --deps --build --pack-emacs --pdf-tools --mu --isync --hunspell --pack-all
goto:eof
:help :help
type %~dp0\scripts\help.txt type %~dp0\scripts\help.txt
goto:eof goto:eof

Loading…
Cancel
Save