Skip to content

Commit

Permalink
fix: build css command
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Apr 8, 2022
1 parent d25e0f1 commit 4b29c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/command/compilescsscommand.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected function execute(InputInterface $input, OutputInterface $output) {
$compiled_path = Plugin::getPhpDir('formcreator') . "/css_compiled/" . basename($file) . ".min.css";
$css = Html::compileScss(
[
'file' => $file,
'file' => Plugin::getPhpDir('formcreator', false) . '/' . $file,
'nocache' => true,
'debug' => true,
]
Expand Down

0 comments on commit 4b29c0f

Please sign in to comment.