diff --git a/AntDeploy2022/AntDeployV2/AntDeployWinform.dll b/AntDeploy2022/AntDeployV2/AntDeployWinform.dll index a039a0b..8a49bb2 100644 Binary files a/AntDeploy2022/AntDeployV2/AntDeployWinform.dll and b/AntDeploy2022/AntDeployV2/AntDeployWinform.dll differ diff --git a/AntDeploy2022/AntDeployV2/source.extension.vsixmanifest b/AntDeploy2022/AntDeployV2/source.extension.vsixmanifest index 8dd7bd5..67f1ea3 100644 --- a/AntDeploy2022/AntDeployV2/source.extension.vsixmanifest +++ b/AntDeploy2022/AntDeployV2/source.extension.vsixmanifest @@ -1,7 +1,7 @@ - + AntDeployV2 Tools to deploy applications to remote server(iis,windowsService,docker) support netframwork and dotnetcore,support rollback and increment deploy https://github.com/yuzd diff --git a/AntDeployWinform/Util/SSHClient.cs b/AntDeployWinform/Util/SSHClient.cs index e3f81f8..0cf154a 100644 --- a/AntDeployWinform/Util/SSHClient.cs +++ b/AntDeployWinform/Util/SSHClient.cs @@ -1479,8 +1479,8 @@ public bool RunSheell(string command) } } - cmd.EndExecute(result); - + var rt = cmd.EndExecute(result); + _logger("result:" + rt, LogLevel.Info); if (!string.IsNullOrEmpty(cmd.Error)) { if (cmd.Error.Contains("unable to resolve host")) @@ -1488,6 +1488,11 @@ public bool RunSheell(string command) _logger(cmd.Error, LogLevel.Warn); return true; } + else if (cmd.Error.Contains("writing image sha256:")) + { + _logger(cmd.Error, LogLevel.Warn); + return true; + } _logger(cmd.Error, LogLevel.Error); return false; } diff --git a/AntDeployWinform/Vsix.cs b/AntDeployWinform/Vsix.cs index 9a8ac0a..ea43bfb 100644 --- a/AntDeployWinform/Vsix.cs +++ b/AntDeployWinform/Vsix.cs @@ -3,7 +3,7 @@ public static class Vsix { public const string FORM_NAME = "AntDeploy("+VERSION+")"; - public const string VERSION = "7.52"; + public const string VERSION = "7.53"; public const string AGENTVERSION = "7.1"; public const string PRODUCT = "yuzd"; public const string PACKAGE = "AntDeploy";