1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| @echo off
| set dir=%cd%
| echo "%FURNPLAN_DEV%\manufacturer\*"
|
| for /D %%i in ("%FURNPLAN_DEV%\manufacturer\*") do (
| if %%i NEQ %FURNPLAN_DEV%\manufacturer\_global (
| if %%i NEQ %FURNPLAN_DEV%\manufacturer\_furnray (
| if %%i NEQ %FURNPLAN_DEV%\manufacturer\_furnview (
| echo update: %%i
| svn commit -m "materials.db removed" %%i
| )
| )
| )
| )
| echo finished...
| pause
|
|