From 177d500ba56a5919027156590ddbe121f311fa0c Mon Sep 17 00:00:00 2001 From: Oren Novotny Date: Thu, 18 Oct 2018 10:52:21 -0400 Subject: [PATCH 1/2] Update refit --- src/SignClient/SignClient.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SignClient/SignClient.csproj b/src/SignClient/SignClient.csproj index e159bb35..5fd25cf8 100644 --- a/src/SignClient/SignClient.csproj +++ b/src/SignClient/SignClient.csproj @@ -13,7 +13,7 @@ - + From 74bc39b6fa7ad997cdf0294af8010408bba757b1 Mon Sep 17 00:00:00 2001 From: Oren Novotny Date: Thu, 18 Oct 2018 10:52:38 -0400 Subject: [PATCH 2/2] Ensure description url is passed properly --- src/SignClient/SignCommand.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/SignClient/SignCommand.cs b/src/SignClient/SignCommand.cs index 2427aab4..a2b7945d 100644 --- a/src/SignClient/SignCommand.cs +++ b/src/SignClient/SignCommand.cs @@ -137,7 +137,12 @@ CommandOption descriptionUrl HttpResponseMessage response; - response = await client.SignFile(input, fileList.HasValue() ? new FileInfo(ExpandFilePath(fileList.Value())) : null, HashMode.Sha256, name.Value(), description.Value(), description.Value()); + response = await client.SignFile(input, + fileList.HasValue() ? new FileInfo(ExpandFilePath(fileList.Value())) : null, + HashMode.Sha256, + name.Value(), + description.Value(), + descriptionUrl.Value()); // Check response