Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

leave a copy of database provider packages in distribution folder #1421

Merged
merged 1 commit into from
May 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions Oqtane.Server/Infrastructure/InstallationManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static bool InstallPackages(string webRootPath, string contentRootPath)
Directory.CreateDirectory(sourceFolder);
}

// move packages to secure location
// move packages to secure /Packages folder
foreach (var folder in "Modules,Themes,Packages".Split(","))
{
foreach(var file in Directory.GetFiles(Path.Combine(webRootPath, folder), "*.nupkg*"))
Expand All @@ -55,7 +55,16 @@ public static bool InstallPackages(string webRootPath, string contentRootPath)
{
File.Delete(destinationFile);
}
File.Move(file, destinationFile);
if (Path.GetExtension(destinationFile) == ".nupkg.bak")
{
// leave a copy in the current folder as it is distributed with the core framework
File.Copy(file, destinationFile);
}
else
{
// move to destination
File.Move(file, destinationFile);
}
}
}

Expand Down