Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rcfile.bat « mpcresources « mplayerc « apps « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9111559873975af5991461acc37d17facff9ea0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@echo off

rem This is a simple script to checkout head revision mplayerc.rc file,
rem then rename it to old file for rcfile.pl to process

echo Get the latest mplayerc.rc from repository...
svn cat -r head ../mplayerc.rc > $$TEMP$$.old
if %ERRORLEVEL% neq 0 GOTO :NOSVNCLI

echo Generating new rc files and string files...
perl rcfile.pl -b $$TEMP$$.old
goto :END

:NOSVNCLI
echo You'll need svn command line tools to use this script.
echo Or you can just checkout the head revision of mplayerc.rc file by yourself,
echo put it somewhere and then use the -b option to point to it.

:END
del $$TEMP$$.old
pause