File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 12
12
RootModule = ' guided-setup'
13
13
14
14
# Version number of this module.
15
- ModuleVersion = ' 1.17 .0'
15
+ ModuleVersion = ' 1.18 .0'
16
16
17
17
# Supported PSEditions
18
18
CompatiblePSEditions = @ (' Core' )
Original file line number Diff line number Diff line change @@ -908,6 +908,12 @@ class GuidedSetupStep : GraphVertex {
908
908
909
909
Write-HostSection $this.title ($this.GetMessage ())
910
910
911
+ $footer = $this.GetMessageFooter ()
912
+ if (" " -ne $footer ) {
913
+ Write-Host $footer
914
+ Write-Host
915
+ }
916
+
911
917
while ($true ) {
912
918
$question = $this.MakeQuestion ($this.prompt )
913
919
$question.Prompt ()
@@ -935,6 +941,10 @@ class GuidedSetupStep : GraphVertex {
935
941
return $this.message
936
942
}
937
943
944
+ [string ]GetMessageFooter() {
945
+ return " "
946
+ }
947
+
938
948
[void ]Reset() {
939
949
940
950
}
You can’t perform that action at this time.
0 commit comments