diff --git a/Oqtane.Server/Infrastructure/InstallationManager.cs b/Oqtane.Server/Infrastructure/InstallationManager.cs index f6b2c524..f5e730e4 100644 --- a/Oqtane.Server/Infrastructure/InstallationManager.cs +++ b/Oqtane.Server/Infrastructure/InstallationManager.cs @@ -48,7 +48,7 @@ namespace Oqtane.Infrastructure // move packages to secure location foreach (var folder in "Modules,Themes,Packages".Split(",")) { - foreach(var file in Directory.GetFiles(Path.Combine(webRootPath, folder), "*.nupkg")) + foreach(var file in Directory.GetFiles(Path.Combine(webRootPath, folder), "*.nupkg*")) { var destinationFile = Path.Combine(sourceFolder, Path.GetFileName(file)); if (File.Exists(destinationFile))