mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
Add some helpful scripts
This commit is contained in:
parent
fb445b3a06
commit
7b925b8eac
3
script/clean
Executable file
3
script/clean
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
find . -type f -name '*.pyc' -delete
|
||||
|
14
script/release
Executable file
14
script/release
Executable file
@ -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
|
||||
|
||||
|
2
script/test
Executable file
2
script/test
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
nosetests
|
Loading…
x
Reference in New Issue
Block a user