3 if "%1" == "did-copy" goto copied
\r
5 rmdir /s /q %TEMP%\xonotic-rsync-updater
\r
6 mkdir %TEMP%\xonotic-rsync-updater
\r
7 for %%f in (*.exe *.dll *.bat) do copy /b %%f %TEMP%\xonotic-rsync-updater\
\r
8 %TEMP%\xonotic-rsync-updater\%~n0 did-copy
\r
13 set buildtype=release
\r
14 if "%~n0" == "update-to-autobuild" set buildtype=autobuild
\r
16 set options=-Prtzil --executability --delete-after --delete-excluded --stats
\r
18 if exist Xonotic-low goto xonoticlow
\r
19 if exist Xonotic-high goto xonotichigh
\r
20 if exist ..\..\..\.git goto xonoticdatagit
\r
21 if exist ..\..\..\data goto xonoticdata
\r
24 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic-low/
\r
25 set target=Xonotic-low/
\r
28 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic-high/
\r
29 set target=Xonotic-high/
\r
32 echo NOTE: this is a git repository download. Using the regular update method.
\r
36 if exist ..\..\..\misc\tools\rsync-updater\rsync.exe goto xonoticdatarsync
\r
37 echo FATAL: rsync not in misc\tools\rsync-updater. This update script cannot be used.
\r
40 set PATH=misc\tools\rsync-updater;%PATH%
\r
42 if exist data\xonotic-rsync-data-low.pk3 goto xonoticdatalow
\r
43 if exist data\xonotic-*-data-low.pk3 goto xonoticdatalowfuzzy
\r
44 if exist data\xonotic-rsync-data-high.pk3 goto xonoticdatahigh
\r
45 if exist data\xonotic-*-data-high.pk3 goto xonoticdatahighfuzzy
\r
46 if exist data\xonotic-rsync-data.pk3 goto xonoticdatanormal
\r
47 if exist data\xonotic-*-data.pk3 goto xonoticdatanormalfuzzy
\r
48 echo FATAL: unrecognized Xonotic build. This update script cannot be used.
\r
51 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic-low/
\r
53 :xonoticdatalowfuzzy
\r
54 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic-low/
\r
55 set options=%options% -y
\r
58 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic-high/
\r
60 :xonoticdatahighfuzzy
\r
61 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic-high/
\r
62 set options=%options% -y
\r
65 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic/
\r
67 :xonoticdatanormalfuzzy
\r
68 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic/
\r
69 set options=%options% -y
\r
75 set url=rsync://beta.xonotic.org/%buildtype%-Xonotic/
\r
81 if not "%XONOTIC_INCLUDE_ALL%" == "" goto endbit
\r
82 set excludes=%excludes% --exclude=/xonotic-linux*
\r
83 set excludes=%excludes% --exclude=/xonotic-osx-*
\r
84 set excludes=%excludes% --exclude=/Xonotic*.app
\r
85 set excludes=%excludes% --exclude=/gmqcc/gmqcc.linux*
\r
86 set excludes=%excludes% --exclude=/gmqcc/gmqcc.osx
\r
88 if "%ProgramFiles(x86)%" == "" goto bit32
\r
90 if not "%XONOTIC_INCLUDE_32BIT%" == "" goto endbit
\r
91 set excludes=%excludes% --exclude=/xonotic-x86.exe
\r
92 set excludes=%excludes% --exclude=/xonotic-x86-wgl.exe
\r
93 set excludes=%excludes% --exclude=/xonotic-x86-dedicated.exe
\r
94 set excludes=%excludes% --exclude=/gmqcc/gmqcc.exe
\r
95 set excludes=%excludes% --exclude=/bin32
\r
96 set excludes=%excludes% --exclude=/*.dll
\r
99 set excludes=%excludes% --exclude=/xonotic.exe
\r
100 set excludes=%excludes% --exclude=/xonotic-wgl.exe
\r
101 set excludes=%excludes% --exclude=/xonotic-dedicated.exe
\r
102 set excludes=%excludes% --exclude=/gmqcc/gmqcc-x64.exe
\r
103 set excludes=%excludes% --exclude=/bin64
\r
107 for %%f in (*.exe *.dll) do copy /b %%f %TEMP%\xonotic-rsync-updater\
\r
108 %TEMP%\xonotic-rsync-updater\rsync %options% %excludes% %url% %target%
\r
109 %TEMP%\xonotic-rsync-updater\chmod -R a+x %target%
\r
113 rmdir /s /q %TEMP%\xonotic-rsync-updater
\r