Skip to content

Commit 1f393d0

Browse files
committed
v7.53 修复Debian经常制作失败的问题
1 parent c709b49 commit 1f393d0

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed
0 Bytes
Binary file not shown.

AntDeploy2022/AntDeployV2/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="AntDeployV2.7c9b7525-17b5-4862-91fd-75e80893e476" Version="3.2" Language="en-US" Publisher="yuzd" />
4+
<Identity Id="AntDeployV2.7c9b7525-17b5-4862-91fd-75e80893e476" Version="3.3" Language="en-US" Publisher="yuzd" />
55
<DisplayName>AntDeployV2</DisplayName>
66
<Description xml:space="preserve">Tools to deploy applications to remote server(iis,windowsService,docker) support netframwork and dotnetcore,support rollback and increment deploy</Description>
77
<MoreInfo>https://github.com/yuzd</MoreInfo>

AntDeployWinform/Util/SSHClient.cs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1479,15 +1479,20 @@ public bool RunSheell(string command)
14791479
}
14801480
}
14811481

1482-
cmd.EndExecute(result);
1483-
1482+
var rt = cmd.EndExecute(result);
1483+
_logger("result:" + rt, LogLevel.Info);
14841484
if (!string.IsNullOrEmpty(cmd.Error))
14851485
{
14861486
if (cmd.Error.Contains("unable to resolve host"))
14871487
{
14881488
_logger(cmd.Error, LogLevel.Warn);
14891489
return true;
14901490
}
1491+
else if (cmd.Error.Contains("writing image sha256:"))
1492+
{
1493+
_logger(cmd.Error, LogLevel.Warn);
1494+
return true;
1495+
}
14911496
_logger(cmd.Error, LogLevel.Error);
14921497
return false;
14931498
}

AntDeployWinform/Vsix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public static class Vsix
44
{
55
public const string FORM_NAME = "AntDeploy("+VERSION+")";
6-
public const string VERSION = "7.52";
6+
public const string VERSION = "7.53";
77
public const string AGENTVERSION = "7.1";
88
public const string PRODUCT = "yuzd";
99
public const string PACKAGE = "AntDeploy";

0 commit comments

Comments
 (0)