no message
This commit is contained in:
parent
8ebad301f2
commit
ceec89fc6b
|
@ -1,5 +1,4 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
|
||||
xcopy ..\data\* .\data\ /s /e /y /exclude:..\shell\exclude.txt
|
||||
|
||||
|
@ -8,5 +7,4 @@ for /f %%i in (../shell/programs.txt) do (
|
|||
go build -o ./%%i/%%i.exe ../%%i/
|
||||
)
|
||||
|
||||
endlocal
|
||||
pause
|
|
@ -1,5 +1,4 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
|
||||
for /f "tokens=*" %%a in (../shell/programs.txt) do (
|
||||
if exist "%%a\*.log" del /q "%%a\*.log"
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
|
||||
for /f %%i in (shell/programs.txt) do (
|
||||
call shell/build_sub.bat %%i
|
||||
)
|
||||
|
||||
endlocal
|
||||
|
||||
echo "build complete!"
|
|
@ -1,5 +1,4 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
|
||||
for /f "tokens=*" %%a in (shell/programs.txt) do (
|
||||
if exist "%%a\*.log" del /q "%%a\*.log"
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
|
||||
for /f %%i in (shell/programs.txt) do (
|
||||
taskkill /F /IM %%i.exe
|
||||
)
|
||||
|
||||
endlocal
|
||||
|
||||
echo "close complete!"
|
|
@ -1,5 +1,4 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
|
||||
for /f "tokens=*" %%a in (shell/programs.txt) do (
|
||||
set program=%%a/%%a.exe
|
||||
|
|
Loading…
Reference in New Issue