Remove double quotes

This commit is contained in:
Andrés Montañez 2021-02-18 22:07:19 -03:00
parent 35bd3805e4
commit d1a89c6934
1 changed files with 1 additions and 1 deletions

View File

@ -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) {