From f4a88440240e3db2b2a13e3ce47c0198eded96d2 Mon Sep 17 00:00:00 2001 From: flaskfarm Date: Thu, 13 Oct 2022 01:36:05 +0900 Subject: [PATCH] update --- lib/framework/init_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/framework/init_plugin.py b/lib/framework/init_plugin.py index b9a7251..939c36d 100644 --- a/lib/framework/init_plugin.py +++ b/lib/framework/init_plugin.py @@ -384,7 +384,7 @@ class PluginManager: if flag: if plugin_git and plugin_git.startswith('http'): command = ['git', '-C', plugin_all_path, 'clone', plugin_git + '.git', '--depth', '1'] - log = SupportSubprocess.execute_command_return(command) + log = SupportSubprocess.execute_command_return(command, log=True) F.logger.debug(log) if os.path.exists(plugin_path): ret['ret'] = 'success'