mirror of
https://github.com/NovaGM/ModuleBuilder.git
synced 2024-08-15 00:23:33 +00:00
[BDTheme] Fix error caused by last commit
This commit is contained in:
parent
f2b397fdbc
commit
0c62c9b764
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ export default (themePath, repo) => {
|
|||
|
||||
let match;
|
||||
while ((match = metaReg.exec(content)) !== null) {
|
||||
const [_, key, value] = match;
|
||||
let [_, key, value] = match;
|
||||
if (key === 'import') break;
|
||||
|
||||
value = value.trim();
|
||||
|
|
Loading…
Reference in a new issue