fix load mode build reversed bug

This commit is contained in:
Jerry 2023-02-01 16:30:17 +08:00
parent 755d66c658
commit ecbaecae42

View File

@ -53,7 +53,7 @@ class BuildCommand extends Command
$this->build(
$target,
LOAD_MODE === LOAD_MODE_VENDOR ? 'src/entry.php' : 'vendor/zhamao/framework/src/entry.php',
LOAD_MODE === LOAD_MODE_SRC ? 'src/entry.php' : 'vendor/zhamao/framework/src/entry.php',
);
$this->info('Phar 包构建完成');