Skip to content

Commit df06eaf

Browse files
committed
small change
1 parent 1515b50 commit df06eaf

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

content/en/docs/deployment/on-premises-design/ms-windows/automate-mendix-deployment-on-microsoft-windows.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,11 @@ Set-MxAppRuntimeSettings $appName -Settings $settings
200200
The following script example demonstrates how to set an application constant for your app. It updates a specific constant value in your Mendix app configuration.
201201

202202
```text
203-
$appName = 'Name of Mendix app'
204-
$constantName = '{Name of your constant}'
205-
$constantValue = '{Value for your constant}'
203+
$appName = '{Name of your app}'
204+
$constants = @{
205+
'constantName' = 'constantValue'
206+
'constantName2' = 'constantValue2'
207+
}
206208
207209
# Set application constant
208210
Set-MxAppConstants $appName -Constants $constants

0 commit comments

Comments
 (0)