探测 boot 脚本是否存在于 package.json 里

This commit is contained in:
luk.lu
2021-07-22 16:38:47 +08:00
parent f2809ad31a
commit 7251918b03
5 changed files with 66 additions and 28 deletions

View File

@@ -21,6 +21,9 @@ if not exist %BASEDIR% (
pushd %BASEDIR%
echo *** Current path = [%CD%] ***
@REM for /d %%d in (*) do ( pushd %%d & ( for /d %%d in (*) do ( if exist %%d/.git pushd %%d & echo --- git pulling: %%d ... & git pull & popd ) ) & popd )
for /d %%d in (*) do (
pushd %%d
for /d %%d in (*) do (
@@ -33,6 +36,7 @@ for /d %%d in (*) do (
)
popd
)
popd
pause