From e1a7954307fc104208ad80eec63288bec3d25dc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ton=C4=87i=20Vatavuk?= Date: Sat, 29 Jan 2022 06:45:51 +0100 Subject: [PATCH] fix #1272 - add support for refs folder in package installation --- Oqtane.Server/Infrastructure/InstallationManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Oqtane.Server/Infrastructure/InstallationManager.cs b/Oqtane.Server/Infrastructure/InstallationManager.cs index 22a8176d..41860c5e 100644 --- a/Oqtane.Server/Infrastructure/InstallationManager.cs +++ b/Oqtane.Server/Infrastructure/InstallationManager.cs @@ -125,6 +125,9 @@ namespace Oqtane.Infrastructure case "ref": // ref/net*/... filename = ExtractFile(entry, Path.Combine(binPath, "ref"), 2); break; + case "refs": // refs/net*/... + filename = ExtractFile(entry, Path.Combine(binPath, "refs"), 2); + break; } if (filename != "")