From d79d3a26d6fdecd706a871d28441985d48a4e480 Mon Sep 17 00:00:00 2001 From: J Bruni Date: Thu, 9 Jul 2015 22:12:02 -0300 Subject: [PATCH] Update packages.md This is absolutely minor, but... with the leading slash it produces `/path/to/database//migrations` - with the unwanted additional slash. --- packages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.md b/packages.md index fcbc3be484..589ba25fe3 100644 --- a/packages.md +++ b/packages.md @@ -189,7 +189,7 @@ You may want to publish groups of package assets and resources separately. For i ], 'config'); $this->publishes([ - __DIR__.'/../database/migrations/' => database_path('/migrations') + __DIR__.'/../database/migrations/' => database_path('migrations') ], 'migrations'); }