mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Changed SHA1 length to 7, so it represents the same size as in BitBucket [ci skip]
This commit is contained in:
parent
48aa7d8c29
commit
9f21b8cfc4
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
|||
|
||||
$version=$env:APPVEYOR_BUILD_VERSION
|
||||
$gitcommit=$env:APPVEYOR_REPO_COMMIT
|
||||
$gitcommit=$gitcommit.SubString(0, [math]::Min($gitcommit.Length, 6))
|
||||
$gitcommit=$gitcommit.SubString(0, [math]::Min($gitcommit.Length, 7))
|
||||
$detailversion=$version + '-' + $gitcommit
|
||||
$release=(([version]$version).build) % 2 -eq 1
|
||||
$fileversion=$version
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue