From 1c52988222c991ca3ab4e909c1908a39d88c302a Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 24 Apr 2017 20:56:53 +0200 Subject: [PATCH] Fix issue for data path conf --- app/bootstrap.php.d/50-git.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bootstrap.php.d/50-git.php b/app/bootstrap.php.d/50-git.php index 9511253..728e2c9 100644 --- a/app/bootstrap.php.d/50-git.php +++ b/app/bootstrap.php.d/50-git.php @@ -6,7 +6,7 @@ use Gist\Service\Gist; $dataPath = $app['settings']['data']['path']; if ($dataPath[0] !== '/') { - $app['gist_path'] = $app['root_path'].$dataPath; + $app['gist_path'] = $app['root_path'].'/'.$dataPath; } else { $app['gist_path'] = $dataPath; }