mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-25 02:24:03 +00:00
13 lines
219 B
Bash
Executable File
13 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
# Script to sign a Scrapy release. To be run from root dir in Scrapy
|
|
# distribution.
|
|
|
|
cd dist
|
|
md5sum Scrapy-* > MD5SUMS
|
|
sha1sum Scrapy-* > SHA1SUMS
|
|
gpg -ba MD5SUMS
|
|
gpg -ba SHA1SUMS
|
|
|
|
# list files created
|
|
ls -l
|