File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ task Build {
2020 if ($aLatestModules ) {
2121 if (! (Test-Path requirements.txt.bak)) { Copy-Item requirements.txt requirements.txt.bak }
2222 Write-Host " Removing versions from requirements.txt file" - ForegroundColor yellow
23- (Get-Content requirements.txt) -replace ' =.+' | Set-Content - Encoding Ascii requirements.txt
23+ (( Get-Content requirements.txt).Trim() -replace ' =.+' ) + " " * ( Get-Random 10 ) | Set-Content - Encoding Ascii requirements.txt
2424
2525 $plantuml_version = Invoke-RestMethod " https://chocolatey.org/api/v2/Packages()?`$ filter=((Id%20eq%20%27plantuml%27)%20and%20(not%20IsPrerelease))%20and%20IsLatestVersion"
2626 $plantuml_version = $plantuml_version.properties.version
Original file line number Diff line number Diff line change @@ -6,5 +6,7 @@ markdown-include==0.6.0
66mkdocs-exclude == 1.0.2
77mkdocs-macros-plugin == 0.6.0
88
9+
910mkdocs-pdf-export-plugin == 0.5.9
10- mkdocs-print-site-plugin == 1.2.3
11+ mkdocs-print-site-plugin == 2.0.0
12+
You can’t perform that action at this time.
0 commit comments