Browse Source

Update cloc.ps1

pull/437/head
Dmitry Nefedov 1 year ago
committed by GitHub
parent
commit
a1a71a4313
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      Scripts/cloc.ps1

6
Scripts/cloc.ps1

@ -1,12 +1,16 @@
# Download cloc
# https://github.com/AlDanial/cloc
$Token = ConvertTo-SecureString '${{ secrets.GITHUB_TOKEN }}' -AsPlainText
$Parameters = @{
Uri = "https://api.github.com/repos/AlDanial/cloc/releases/latest"
Uri = "https://api.github.com/repos/AlDanial/cloc/releases/latest"
Token = $Token
Authentication = "Bearer"
UseBasicParsing = $true
Verbose = $true
}
$Tag = (Invoke-RestMethod @Parameters).tag_name.replace("v", "")
$Parameters = @{
Uri = "https://github.com/AlDanial/cloc/releases/download/v$Tag/cloc-$Tag.exe"
OutFile = "$PSScriptRoot\cloc.exe"

Loading…
Cancel
Save