Skip to content

Commit b9d2ebd

Browse files
committed
修复依赖不安装的问题
1 parent 4ad7408 commit b9d2ebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FluentLauncher.UniversalInstaller/Pages/ProgressPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ async Task InstallLauncherPackage(FileInfo fileInfo)
216216
ZipFile.ExtractToDirectory(fileInfo.FullName, directory.FullName);
217217

218218
string packagePath = Path.Combine(directory.FullName, $"msix-{architecture}.msix");
219-
string[] dependencyPackagesPath = Directory.GetFiles(directory.FullName, "dependencies");
219+
string[] dependencyPackagesPath = Directory.GetFiles(Path.Combine(directory.FullName, "dependencies"));
220220

221221
#region Parse Package
222222

0 commit comments

Comments
 (0)