1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-02-04 18:21:06 +02:00

Merge pull request #1285 from wolfgang42/docs-powershell-shasum

PowerShell SHA256 command now emits lowercase
This commit is contained in:
Brad Rydzewski 2015-10-30 11:32:20 -07:00
commit 0293f49311

View File

@ -61,5 +61,5 @@ f63561783e550ccd21663d13eaf6a4d252d84147 .drone.yml
Generate a checksum on Windows with powershell:
```
$ Get-FileHash .\.drone.yml -Algorithm SHA256
$ (Get-FileHash .\.drone.yml -Algorithm SHA256).Hash.ToLower()
```