From 5e1f80279dbd22e2cc7e2b59e7dd54a92343a4e6 Mon Sep 17 00:00:00 2001 From: Maroo-b Date: Sat, 30 May 2015 11:11:46 +0100 Subject: [PATCH] fix config path for laravel 5 --- src/Stevebauman/Location/LocationServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Stevebauman/Location/LocationServiceProvider.php b/src/Stevebauman/Location/LocationServiceProvider.php index 1991e58..f7d8d85 100644 --- a/src/Stevebauman/Location/LocationServiceProvider.php +++ b/src/Stevebauman/Location/LocationServiceProvider.php @@ -26,7 +26,7 @@ public function register() $this->package('stevebauman/location'); } else { $this->publishes([ - __DIR__.'../../../config/config.php' => config_path('location.php'), + __DIR__.'/../../config/config.php' => config_path('location.php'), ], 'config'); }