This commit is contained in:
Martin Folkerts 2024-03-10 21:53:01 +01:00
parent e996a274db
commit e2df6e2409
4 changed files with 5 additions and 2 deletions

View file

@ -44,7 +44,9 @@ public function handle()
sprintf('--filename=%s', $this->projectReport->getFullPathName()), sprintf('--filename=%s', $this->projectReport->getFullPathName()),
sprintf('--weeks_ago=%s', $this->projectReport->weeksAgo()), sprintf('--weeks_ago=%s', $this->projectReport->weeksAgo()),
sprintf('--report_date=%s', $this->projectReport->getReportDate()), sprintf('--report_date=%s', $this->projectReport->getReportDate()),
sprintf('--data_dir=%s', $this->projectReport->project->download_path),
]; ];
logger('command:'. print_r($command, true));
// Convert commands array to a single string // Convert commands array to a single string

View file

@ -1,6 +1,6 @@
{ {
"resources/css/app.css": { "resources/css/app.css": {
"file": "assets/app-67d2d127.css", "file": "assets/app-f1962042.css",
"isEntry": true, "isEntry": true,
"src": "resources/css/app.css" "src": "resources/css/app.css"
}, },

View file

@ -7,6 +7,7 @@ export default {
content: [ content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php', './vendor/laravel/jetstream/**/*.blade.php',
'./app/View/Components/**/*.php',
'./storage/framework/views/*.php', './storage/framework/views/*.php',
'./resources/views/**/*.blade.php', './resources/views/**/*.blade.php',
], ],