Skip to content

Commit 41f2d61

Browse files
committed
Fixed a bug introduced in the 3.6.0.0 version
1 parent 80a17ac commit 41f2d61

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Outsystems.SetupTools Release History
22

3+
## 3.6.1.0
4+
5+
- Set-OSServerConfig: Fixed a bug introduced in the 3.6.0.0 version
6+
37
## 3.6.0.0
48

59
- Get-OSServerPreReqs: Fixed bug that caused script to output wrong error message

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 3.6.0.{build}
1+
version: 3.6.1.{build}
22

33
only_commits:
44
files:

src/Outsystems.SetupTools/Functions/Set-OSServerConfig.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,11 +323,11 @@ function Set-OSServerConfig
323323
if ($PSBoundParameters.UpgradeEnvironment.IsPresent)
324324
{
325325
LogMessage -Function $($MyInvocation.Mycommand) -Phase 1 -Stream 0 -Message "Upgrade of environment will be performed"
326-
$configToolArguments = "/UpgradeEnvironment"
326+
$configToolArguments = "/UpgradeEnvironment "
327327
}
328328
else
329329
{
330-
$configToolArguments = "/setupinstall"
330+
$configToolArguments = "/setupinstall "
331331
}
332332

333333
if ($PSBoundParameters.IntegratedAuthPassword.IsPresent)

src/Outsystems.SetupTools/OutSystems.SetupTools.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'OutSystems.SetupTools.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.6.0.0'
15+
ModuleVersion = '3.6.1.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

0 commit comments

Comments
 (0)