Skip to content

Commit 505df8c

Browse files
committed
fix lang publish stub
1 parent 133dc24 commit 505df8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/LaravelPackageGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public function handle()
191191
$register->push(" ");
192192
$register->push(' //Publish Lang');
193193
$register->push(' $this->publishes([');
194-
$register->push(' __DIR__.\'/../resources/lang\' => app_path(\'lang/vendor/'.$packageNamePath.'\'),');
194+
$register->push(' __DIR__.\'/../resources/lang\' => base_path(\'lang/vendor/'.$packageNamePath.'\'),');
195195
$register->push(' ], \''.$packageNamePath.'-lang\');');
196196
$register->push(" ");
197197
}

0 commit comments

Comments
 (0)