Explorar el Código

Fixed release script

master
David Winterbottom hace 13 años
padre
commit
f164d61282
Se han modificado 1 ficheros con 2 adiciones y 5 borrados
  1. 2
    5
      release.sh

+ 2
- 5
release.sh Ver fichero

@@ -5,12 +5,9 @@ git tag | grep $RELEASE_NUM > /dev/null && \
5 5
 	echo "New version number required ($RELEASE_NUM already used)" && exit 1
6 6
 
7 7
 # Push to PyPi
8
-:xa
9
-
10
-
11
-
12 8
 ./setup.py sdist upload
13 9
 
14 10
 # Tag in Git
15 11
 git tag $RELEASE_NUM -m "Tagging release $RELEASE_NUM"
16
-git push --tags
12
+git push --tags
13
+git push 

Loading…
Cancelar
Guardar