Skip to content

Commit

Permalink
(gh-194) Rebased versions to match current package
Browse files Browse the repository at this point in the history
Rebased to match the current pushed version so that the updates can be
pushed tothe community repository.
  • Loading branch information
dgalbraith committed Sep 23, 2020
1 parent 70dcfb6 commit 6ceb835
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion automatic/dotcover-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Software license](https://img.shields.io/badge/license-proprietary-lightgrey)](https://www.jetbrains.com/legal/agreements/user.html)
[![Maintenance status](https://img.shields.io/badge/maintained%3F-yes-green.svg)](https://gitHub.com/dgalbraith/chocolatey-packages/graphs/commit-activity)
[![AppVeyor build](https://img.shields.io/appveyor/ci/dgalbraith/chocolatey-packages)](https://ci.appveyor.com/project/dgalbraith/chocolatey-packages)
[![Software version](https://img.shields.io/badge/Source-v2020.2.2.20200915.20200915-blue.svg)](https://www.jetbrains.com/dotcover/download/#section=commandline)
[![Software version](https://img.shields.io/badge/Source-v2020.2.1-blue.svg)](https://www.jetbrains.com/dotcover/download/#section=commandline)
[![Chocolatey package version](https://img.shields.io/chocolatey/v/dotcover-cli?label=Chocolatey)](https://chocolatey.org/packages/dotcover-cli)

dotCover Command Line Tools is a free redistributable package which enables analyzing the code coverage outside of Visual Studio.
Expand Down
4 changes: 2 additions & 2 deletions automatic/dotcover-cli/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
$ErrorActionPreference = 'Stop'

$toolsDir = Split-Path -parent $MyInvocation.MyCommand.Definition
$archive = 'JetBrains.dotCover.CommandLineTools.2020.2.2.zip'
$archive = Join-Path $toolsDir 'JetBrains.dotCover.CommandLineTools.2020.2.1.zip'

$unzipArgs = @{
PackageName = $env:ChocolateyPackageName
FileFullPath = Join-Path $toolsDir $archive
FileFullPath = $archive
Destination = $toolsDir
}

Expand Down
4 changes: 2 additions & 2 deletions automatic/dotcover-cli/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $ErrorActionPreference = 'STOP'
$domain = 'https://data.services.jetbrains.com'
$releases = "${domain}/products?code=DCCLT&release.type=release"

$refile = "J.+zip"
$refile = "(\/|'|\s'|e\s|\s)(J.+zip)"
$reversion = '(-v)(\d+\.\d\.*\d*)'

function global:au_BeforeUpdate {
Expand All @@ -26,7 +26,7 @@ function global:au_SearchReplace {
}

".\tools\chocolateyInstall.ps1" = @{
"$($refile)" = "$($Latest.FileName32)"
"$($refile)" = "`${1}$($Latest.FileName32)"
}
}
}
Expand Down

0 comments on commit 6ceb835

Please sign in to comment.