From f833abf098d965a4cc35e5fd4cf52a2d29d2468c Mon Sep 17 00:00:00 2001 From: Paul Olthof Date: Fri, 12 Jun 2015 16:24:47 +0200 Subject: [PATCH] Bug in dumping new languages. --- src/Console/Commands/DumpCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Commands/DumpCommand.php b/src/Console/Commands/DumpCommand.php index 28f3b28..e17215d 100644 --- a/src/Console/Commands/DumpCommand.php +++ b/src/Console/Commands/DumpCommand.php @@ -85,7 +85,7 @@ protected function write($dump) foreach($groups as $group => $content) { $path = $lang_path."/{$locale}"; if(!\File::exists($path)) { - \File::makeDirectory($lang_path, 0755, true); + \File::makeDirectory($path, 0755, true); } $file = $path."/{$group}.php";