Skip to content

Commit 0f5410a

Browse files
committed
fixup! Merge branch 'main' into dean/debug-client
1 parent 4eacfea commit 0f5410a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Vpn.DebugClient/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.IO.Pipes;
1+
using System.IO.Pipes;
22
using Coder.Desktop.Vpn.Proto;
33

44
namespace Coder.Desktop.Vpn.DebugClient;

Vpn.Service/Manager.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -284,10 +284,10 @@ private async Task DownloadTunnelBinaryAsync(string baseUrl, SemVersion expected
284284
_config.TunnelBinaryPath);
285285
var req = new HttpRequestMessage(HttpMethod.Get, url);
286286
var validators = new CombinationDownloadValidator(
287-
// TODO: re-enable when the binaries are signed and have versions
288-
//AuthenticodeDownloadValidator.Coder,
289-
//new AssemblyVersionDownloadValidator(
290-
//$"{expectedVersion.Major}.{expectedVersion.Minor}.{expectedVersion.Patch}.0")
287+
// TODO: re-enable when the binaries are signed and have versions
288+
//AuthenticodeDownloadValidator.Coder,
289+
//new AssemblyVersionDownloadValidator(
290+
//$"{expectedVersion.Major}.{expectedVersion.Minor}.{expectedVersion.Patch}.0")
291291
);
292292
var downloadTask = await _downloader.StartDownloadAsync(req, _config.TunnelBinaryPath, validators, ct);
293293

0 commit comments

Comments
 (0)