IGN:Tag release

This commit is contained in:
Kovid Goyal 2008-12-28 11:00:13 -08:00
parent 6ca0d64e15
commit d7b440024b
2 changed files with 3 additions and 3 deletions

View File

@ -53,8 +53,8 @@ That's all. To add this code to |app| as a plugin, simply create a zip file with
zip plugin.zip my_plugin.py zip plugin.zip my_plugin.py
You can download the Hellow World plugin from You can download the Hello World plugin from
`helloworld_plugin.zip <http://calibre.kovidgoyal.net/wiki/UserRecipes>`_. `helloworld_plugin.zip <http://calibre.kovidgoyal.net/downloads/helloworld_plugin.zip>`_.
Now either use the configuration dialog in |app| GUI to add this zip file as a plugin, or Now either use the configuration dialog in |app| GUI to add this zip file as a plugin, or
use the command:: use the command::

View File

@ -217,7 +217,7 @@ def stage_one():
os.mkdir('build') os.mkdir('build')
shutil.rmtree('docs') shutil.rmtree('docs')
os.mkdir('docs') os.mkdir('docs')
check_call('python setup.py build', shell=True) check_call('python setup.py build_ext build', shell=True)
check_call('sudo python setup.py develop', shell=True) check_call('sudo python setup.py develop', shell=True)
tag_release() tag_release()
upload_demo() upload_demo()