Skip to content

Commit

Permalink
fix module path
Browse files Browse the repository at this point in the history
  • Loading branch information
norbybaru committed Jul 7, 2024
1 parent 811fb60 commit 78d1851
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Get Composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache Composer dependencies
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Commands/ModuleMakerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ protected function getModuleRootDirectory(): string
*/
protected function rootNamespace()
{
return 'Modules\\';
return config('modularize.root_path').'\\';
}

abstract protected function getFolderPath(): string;
Expand Down

0 comments on commit 78d1851

Please sign in to comment.