From bc26d1c1ce35afc4955d1bc47729ef0b49c55198 Mon Sep 17 00:00:00 2001 From: Tony Messias Date: Mon, 12 Aug 2024 23:10:10 -0300 Subject: [PATCH] Fix build command --- src/Commands/BuildCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/BuildCommand.php b/src/Commands/BuildCommand.php index 347d15c..1a3a105 100644 --- a/src/Commands/BuildCommand.php +++ b/src/Commands/BuildCommand.php @@ -53,7 +53,7 @@ public function handle() ->run(array_filter([ $binFile, '-i', $sourcePath, - '-o', $destinationPath, + '-o', $destinationFileAbsolutePath, $this->option('watch') ? '-w' : null, $this->shouldMinify() ? '-m' : null, ]), function ($type, $output) {