This commit is contained in:
陆柯 2021-09-23 10:31:43 +08:00
parent f5fc1d1930
commit 78db55c4bf
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ for /d %%o in (*) do (
if not %%o == .vscode ( if not %%o == .vscode (
@REM 每次 git pull 都会造成 .git 目录下某些文件变化,导致云端不断自动同步。因此过滤掉 *@cloud 的目录不做更新。 @REM 每次 git pull 都会造成 .git 目录下某些文件变化,导致云端不断自动同步。因此过滤掉 *@cloud 的目录不做更新。
echo %%o | findstr "@cloud" >NUL && ( echo %%o | findstr "@cloud" >NUL && (
@REM echo omitting [%BASEDIR%\%%o] echo !!! omitting [%BASEDIR%\%%o]
) || ( ) || (
echo entering [%BASEDIR%\%%o] echo entering [%BASEDIR%\%%o]
pushd %%o pushd %%o

View File

@ -27,7 +27,7 @@ echo *** Current path = [%CD%] ***
for /d %%o in (*) do ( for /d %%o in (*) do (
if not %%o == .vscode ( if not %%o == .vscode (
echo %%o | findstr "@cloud" >NUL && ( echo %%o | findstr "@cloud" >NUL && (
@REM echo omitting [%BASEDIR%\%%o] echo !!! omitting [%BASEDIR%\%%o]
) || ( ) || (
echo entering [%BASEDIR%\%%o] echo entering [%BASEDIR%\%%o]
pushd %%o pushd %%o