Skip to content

Commit 75e965f

Browse files
committed
Improve warning message
1 parent 8217d3a commit 75e965f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Actions/Deploy/Deploy.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function CheckInstalledApps {
7070
$installedVersion = [version]::new($installedApp.versionMajor, $installedApp.versionMinor, $installedApp.versionBuild, $installedApp.versionRevision)
7171

7272
if ($currentVersion -lt $installedVersion) {
73-
Write-Host "::WARNING::App $($appJson.name) is already installed in version $installedVersion, which is higher than $currentVersion, used in app.json."
73+
Write-Host "::WARNING::App $($appJson.name) is already installed in version $installedVersion, which is higher than $currentVersion, used in app.json. In order to install version $currentVersion, the higher version must be uninstalled first."
7474
}
7575
}
7676
}

0 commit comments

Comments
 (0)