SparkleShare/data/plugins/build.cmd

12 lines
243 B
Batchfile
Raw Normal View History

@echo off
pushd %~dp0
set xslt=..\..\SparkleShare\Windows\tools\xslt\bin\release\xslt.exe
if not exist %xslt% call ..\..\SparkleShare\Windows\tools\xslt\build.cmd
for %%a in (*.xml.in) do (
2012-04-26 00:34:28 +00:00
%xslt% parse_plugins.xsl "%%a" "%%~dpna"
)
popd