Cleanup old markdown documenation approach (#979)

This commit is contained in:
Aleksandr Chebotov
2020-06-02 20:07:12 +03:00
committed by GitHub
parent 8c8f384a61
commit 43e26fa96b
72 changed files with 133 additions and 1541 deletions

View File

@@ -3,15 +3,13 @@
## Desc: Validate sbt for Windows
################################################################################
if((Get-Command -Name 'sbt'))
if (Get-Command -Name 'sbt')
{
Write-Host "sbt is on the path"
Write-Host 'sbt is on the path'
}
else
{
Write-Host "sbt is not on path."
Write-Host 'sbt is not on path.'
exit 1
}
# This works around issue where sbt --script-version does some copies and breaks the build
Add-SoftwareDetailsToMarkdown -SoftwareName "sbt" -DescriptionMarkdown ""