color-schemes/build/generate-intellij.php
2012-12-07 23:01:53 +00:00

12 lines
285 B
PHP
Executable File

<?php
$themes = glob('../*.tmTheme');
foreach($themes as $theme)
{
$new = str_replace('.tmTheme', '.xml', $theme);
$new = str_replace('../', '../intellij-themes/', $new);
echo "Converting '{$new}'...";
exec("python colorSchemeTool.py \"{$theme}\" \"{$new}\"");
echo "done!\n";
}