Removed useless '/' from build status cache path.

This commit is contained in:
Dmitry Khomutov 2017-09-16 20:20:08 +07:00
parent 75ab37ba97
commit 5df94982a1

View file

@ -158,7 +158,7 @@ class BuildStatusController extends Controller
}
}
$cacheDir = RUNTIME_DIR . '/status_cache/';
$cacheDir = RUNTIME_DIR . 'status_cache/';
$cacheFile = $cacheDir . md5($imageUrl) . '.svg';
if (!is_file($cacheFile)) {
$image = file_get_contents($imageUrl);