Update phar file with latest build

* Update `ouput` to be a folder instead of a filename
This commit is contained in:
Craig Davis
2014-01-12 13:42:25 -07:00
parent a5c13d0c43
commit d225525927
10 changed files with 725 additions and 31 deletions

View File

@@ -18,7 +18,7 @@ class TemplatesCommand extends Command
{
$this->app = $this->getApplication();
$tplData = array('templates' => array());
foreach(glob($this->app->templatePath . '/*', GLOB_ONLYDIR) as $dir) {
foreach (glob($this->app->templatePath . '/*', GLOB_ONLYDIR) as $dir) {
$tplData['templates'][] = (object) array(
'name' => basename($dir),
'description' => file_exists($dir . '/description.txt')