beyondcode / invoker-community

74 stars 2 forks source link

Getting error on project - mkdir(): Read-only file system #318

Closed nathangross closed 1 year ago

nathangross commented 1 year ago

OS: darwin Invoker Version: 2.10.0 Laravel Version: 9.34.0 Local project: true PHP Binary: /opt/homebrew/bin/php Route: /project/placeholder?project=local-jNgTuLwmLanmNUq8TaxKzz

Error:

ErrorException 

  mkdir(): Read-only file system

  at /Users/nathan/Code/pigworks/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:631
    627▕         if ($force) {
    628▕             return @mkdir($path, $mode, $recursive);
    629▕         }
    630▕ 
  ➜ 631▕         return mkdir($path, $mode, $recursive);
    632▕     }
    633▕ 
    634▕     /**
    635▕      * Move a directory.

      +3 vendor frames 
  4   [internal]:0
      A17\Blast\DataStore::__construct(Object(Illuminate\Filesystem\Filesystem))

      +19 vendor frames 
  24  phar:/Applications/Invoker.app/Contents/Resources/invoker.phar/src/Actions/GetCommandsAction.php:22
      Illuminate\Foundation\Console\Kernel::all()

This happens as soon as I open this particular project. I'm not sure what directory is failing to create. Does Invoker create a file or directory per project?

nathangross commented 1 year ago

I didn't notice it when I originally posted this but this error seems to be related to package called Blast by Area17. I just removed the package and this project now opens up without error.

https://github.com/area17/blast

I may post something over on their end to hopefully figure this out.