From f61841e4a37efb09e617276c863f19b3212aa9c5 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Tue, 30 Jan 2018 22:32:48 +0100 Subject: [PATCH] Fix path --- phplambda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phplambda b/phplambda index 42c197fd5..f1d92520c 100755 --- a/phplambda +++ b/phplambda @@ -11,7 +11,7 @@ use Symfony\Component\Filesystem\Filesystem; if (file_exists(__DIR__ . '/vendor/autoload.php')) { require_once __DIR__ . '/vendor/autoload.php'; } else { - require_once __DIR__ . '/../../autoload.php'; + require_once __DIR__ . '/../autoload.php'; } $app = new Silly\Application;