Skip to content

Commit b545f08

Browse files
committed
fix themeupdate to use new dir structure
1 parent a9fcce1 commit b545f08

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/themeupdate.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
die('cli only');
99
}
1010

11-
$dirs = scandir(__DIR__.'/../themes/');
11+
$dirs = scandir(__DIR__.'/../public/themes/');
1212

1313
foreach ($dirs as $dir) {
14-
$fulldir = realpath(__DIR__.'/../themes/'.$dir);
14+
$fulldir = realpath(__DIR__.'/../public/themes/'.$dir);
1515
if ($dir[0]=='.' || !is_dir($fulldir) || !is_file($fulldir.'/style.scss')) {
1616
continue;
1717
}

0 commit comments

Comments
 (0)