diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c67cfbd..b00f69b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -52,7 +52,7 @@ jobs: run: composer install --no-progress --prefer-dist --optimize-autoloader - name: Directory Permissions - run: sudo chown -R $(whoami) storage vendor/pestphp/pest/.temp vendor/orchestra + run: sudo chown -R $(whoami) vendor/pestphp/pest/.temp vendor/orchestra - name: Install Workbench NPM dependencies run: composer setup-bun diff --git a/src/Bundlers/Bun.php b/src/Bundlers/Bun.php index 04da490..0e8b52a 100644 --- a/src/Bundlers/Bun.php +++ b/src/Bundlers/Bun.php @@ -33,7 +33,7 @@ public function build(string $inputPath, string $outputPath, string $fileName): ]; - Process::run("{$path}bun build {$this->args($options)}") + Process::run(dd("{$path}bun build {$this->args($options)}")) ->throw(function ($res) use ($inputPath, $fileName): void { $failed = file_get_contents($inputPath.$fileName); throw new BundlingFailedException($res, $failed);