diff --git a/src/Umbraco.Web/Install/InstallSteps/StarterKitDownloadStep.cs b/src/Umbraco.Web/Install/InstallSteps/StarterKitDownloadStep.cs index 641146fb4a..9232c6b138 100644 --- a/src/Umbraco.Web/Install/InstallSteps/StarterKitDownloadStep.cs +++ b/src/Umbraco.Web/Install/InstallSteps/StarterKitDownloadStep.cs @@ -70,6 +70,8 @@ namespace Umbraco.Web.Install.InstallSteps //add an entry to the installedPackages.config var compiledPackage = _packageService.GetCompiledPackageInfo(packageFile); var packageDefinition = PackageDefinition.FromCompiledPackage(compiledPackage); + packageDefinition.PackagePath = packageFile.FullName; + _packageService.SaveInstalledPackage(packageDefinition); InstallPackageFiles(packageDefinition, compiledPackage.PackageFile);