From ee1411b551d3289566130b1f8ed7ad1bc31848aa Mon Sep 17 00:00:00 2001 From: Ricardo Paes Date: Sun, 3 Apr 2022 23:52:51 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fixing=20bin=20file=20location?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- {src/bin => bin}/ide-helper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename {src/bin => bin}/ide-helper (55%) diff --git a/src/bin/ide-helper b/bin/ide-helper similarity index 55% rename from src/bin/ide-helper rename to bin/ide-helper index 6530241..a698adf 100755 --- a/src/bin/ide-helper +++ b/bin/ide-helper @@ -3,10 +3,10 @@ use Like\Eloquent\IdeHelper\Application; -include __DIR__ . '/../laravel-functions.php'; +include __DIR__ . '/../src/laravel-functions.php'; if (! class_exists(Application::class)) { - include $_composer_autoload_path ?? __DIR__ . '/../../vendor/autoload.php'; + include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php'; } $app = new Application();