private/Functions/Update-CTConfiguration.ps1
#Upgrades the configuration file with new schema changes ## CURRENT SCHEMA VERSION: 1 #Don't forget to update Schema Version in Get-CTSchemaVersion and the Reference Object function Update-CTConfiguration { [cmdletBinding()] Param() #Check if schema version is < 1 if(!$Script:Config.ContainsKey('SchemaVersion')) { $Script:Config.Add('SchemaVersion','1') } if($Script:Config.SchemaVersion -eq 1) { #Reserved for future updates } Write-CTConfiguration } |