我的批处理文件的目标是执行“mvn clean install”,在某处复制一些环境文件,然后启动localhost服务器。
这是我的批处理文件:
REM # change the following dirs accordingly
set webapp_dir=C:\cygwin\home\git\new_trunk
echo "moving to webapps project dir"
cd %webapp_dir%
echo "mvn clean install"
mvn clean install
---------------------it seems to finish the maven install then just stops
---------------------------i dont really wanna write 2 batch files just for this
set env_dir=C:\cygwin\home\git\new_trunk\etc\environment\dev\yao
set class_dir=C:\cygwin\home\git\new_trunk\webapps-dist\target\classes
cd %env_dir%
copy /y env.conf.bat %class_dir%
echo "copying env.conf file"
msg * maven install complete, the env.conf has been copied
set run_dir=C:\cygwin\home\git\new_trunk\webapps-dist\target\classes\jboss-as\bin
cd %run_dir%
echo "starting the server, run server 0.0.0.0"
run.bat -c server -b 0.0.0.0
当我说停止时我的意思是 那么有一种方法可以在一个批处理文件中运行所有内容吗?
答案 0 :(得分:31)
尝试将mvn clean install
更改为call mvn clean install
。
如果mvn
是另一个批处理文件,则除非您使用call
明确调用,否则控件将不会返回到原始批处理文件。