Skip to content

Commit

Permalink
Fixed a bug introduced in the 3.6.0.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
pintonunes committed Jul 3, 2020
1 parent 80a17ac commit 41f2d61
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Outsystems.SetupTools Release History

## 3.6.1.0

- Set-OSServerConfig: Fixed a bug introduced in the 3.6.0.0 version

## 3.6.0.0

- Get-OSServerPreReqs: Fixed bug that caused script to output wrong error message
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 3.6.0.{build}
version: 3.6.1.{build}

only_commits:
files:
Expand Down
4 changes: 2 additions & 2 deletions src/Outsystems.SetupTools/Functions/Set-OSServerConfig.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -323,11 +323,11 @@ function Set-OSServerConfig
if ($PSBoundParameters.UpgradeEnvironment.IsPresent)
{
LogMessage -Function $($MyInvocation.Mycommand) -Phase 1 -Stream 0 -Message "Upgrade of environment will be performed"
$configToolArguments = "/UpgradeEnvironment"
$configToolArguments = "/UpgradeEnvironment "
}
else
{
$configToolArguments = "/setupinstall"
$configToolArguments = "/setupinstall "
}

if ($PSBoundParameters.IntegratedAuthPassword.IsPresent)
Expand Down
2 changes: 1 addition & 1 deletion src/Outsystems.SetupTools/OutSystems.SetupTools.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'OutSystems.SetupTools.psm1'

# Version number of this module.
ModuleVersion = '3.6.0.0'
ModuleVersion = '3.6.1.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down

0 comments on commit 41f2d61

Please sign in to comment.