mirror of https://github.com/docker/docs.git
Add some helpful scripts
This commit is contained in:
parent
fb445b3a06
commit
7b925b8eac
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
find . -type f -name '*.pyc' -delete
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
echo 'pass a version as first argument'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
git tag $1
|
||||||
|
git push --tags
|
||||||
|
python setup.py sdist upload
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
nosetests
|
Loading…
Reference in New Issue