From d1a89c69345d0da132f9e38e56cba6b73e629748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Monta=C3=B1ez?= Date: Thu, 18 Feb 2021 22:07:19 -0300 Subject: [PATCH] Remove double quotes --- bin/mage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mage b/bin/mage index eb05f2b..318493b 100755 --- a/bin/mage +++ b/bin/mage @@ -11,7 +11,7 @@ if (file_exists(__DIR__ . '/../../../autoload.php')) { use Mage\MageApplication; try { - $file = sprintf("%s/.mage.yml", getcwd()); + $file = sprintf('%s/.mage.yml', getcwd()); $mage = new MageApplication($file); $mage->run(); } catch (Exception $exception) {