aschmelyun / diode

A WASM-powered local development environment for Laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Artisan file being modified by running the artisan command

morpheus7CS opened this issue · comments

Hey @aschmelyun,

today, I've tried re-running artisan make:filament-user today and noticed that every time artisan command fails, it adds a umask(18);function on top of the artisan binary file, like so:

Before:

<?php

define('LARAVEL_START', microtime(true));

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any of our classes manually. It's great to relax.
|
*/

require __DIR__.'/vendor/autoload.php';

$app = require_once __DIR__.'/bootstrap/app.php';

After:

<?php
umask(18);

define('LARAVEL_START', microtime(true));

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any of our classes manually. It's great to relax.
|
*/

require __DIR__.'/vendor/autoload.php';

$app = require_once __DIR__.'/bootstrap/app.php';

Hope this helps in solving the issues described in Issue #2.

Kind regards,
g