Skip to content

Commit 22f6746

Browse files
committed
fixes #174 persisting RebootOk accross nested installs
1 parent cc0b6c5 commit 22f6746

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Boxstarter.Chocolatey/Init-Settings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ if($BoxStarter.LocalRepo.StartsWith("$env:windir")) {
77
if(!(Test-Path $BoxStarter.LocalRepo)) { mkdir $BoxStarter.LocalRepo | Out-Null }
88
}
99
$Boxstarter.NugetSources=$config.NugetSources
10-
$Boxstarter.RebootOk=$true
10+
if(!$Boxstarter.ContainsKey('RebootOk')) { $Boxstarter.RebootOk=$true }

BuildScripts/releaseNotes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<releaseNotes>
2+
- Persist RebootOk setting in nested installs
23
- Suppress bogus Invalid Namespace errors
34
- Added ability to configure "Expand to open folder" in Set-WindowsExplorerOptions
45
- Added ability to configure QuickAccess options in Set-WindowsExplorerOption

0 commit comments

Comments
 (0)