mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Library for ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://library.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary
|
||
// | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace library\command\sync;
|
||
|
||
use library\command\Sync;
|
||
use think\console\Input;
|
||
use think\console\Output;
|
||
|
||
/**
|
||
* Class Admin
|
||
* @package library\command\sync
|
||
*/
|
||
class Admin extends Sync
|
||
{
|
||
|
||
/**
|
||
* 指令属性配置
|
||
*/
|
||
protected function configure()
|
||
{
|
||
$this->modules = ['application/admin/', 'think'];
|
||
$this->setName('xsync:admin')->setDescription('从远程覆盖本地Admin模块的所有代码');
|
||
}
|
||
|
||
/**
|
||
* 执行更新操作
|
||
* @param Input $input
|
||
* @param Output $output
|
||
*/
|
||
protected function execute(Input $input, Output $output)
|
||
{
|
||
$root = str_replace('\\', '/', env('root_path'));
|
||
if (file_exists("{$root}/application/admin/sync.lock")) {
|
||
$this->output->error("--- Admin 模块已经被锁定,不能继续更新");
|
||
} else {
|
||
parent::execute($input, $output);
|
||
}
|
||
}
|
||
|
||
}
|