add powershell command for sha256 to docs

This commit is contained in:
Brad Rydzewski 2015-09-07 18:26:11 -07:00
parent 6e6790937f
commit 95c849a26b

View file

@ -55,3 +55,9 @@ Generate a checksum on OSX or Linux:
$ shasum -a 256 .drone.yml
f63561783e550ccd21663d13eaf6a4d252d84147 .drone.yml
```
Generate a checksum on Windows with powershell:
```
$ Get-FileHash .\.drone.yml -Algorithm SHA256
```