Merge pull request #25 from zolay-poi/zolay

兼容linux系统的git已是最新提示
This commit is contained in:
Kokomi 2022-06-07 03:57:35 +08:00 committed by GitHub
commit 3da44d7009
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,7 +121,7 @@ export async function updateRes(e) {
e.reply("开始尝试更新,请耐心等待~");
command = `git pull`;
exec(command, { cwd: `${resPath}/miao-res-plus/` }, function (error, stdout, stderr) {
if (/Already up to date/.test(stdout)) {
if (/Already up[ -]to[ -]date/.test(stdout)) {
e.reply("目前所有图片都已经是最新了~");
return true;
}
@ -165,7 +165,7 @@ export async function updateMiaoPlugin(e) {
e.reply("正在执行更新操作,请稍等");
}
exec(command, { cwd: `${_path}/plugins/miao-plugin/` }, function (error, stdout, stderr) {
if (/Already up to date/.test(stdout)) {
if (/Already up[ -]to[ -]date/.test(stdout)) {
e.reply("目前已经是最新版喵喵了~");
return true;
}