Skip to content

Commit d098e96

Browse files
committed
fixed paver tasks
1 parent bc4b4a4 commit d098e96

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

pavement.py

+1-10
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,13 @@
3333
)
3434
)
3535

36-
3736
@task
3837
def setup(options):
3938
pass
4039

4140
@task
4241
def install(options):
4342
'''install plugin to qgis'''
44-
builddocs(options)
4543
plugin_name = options.plugin.name
4644
src = path(__file__).dirname() / plugin_name
4745
if os.name == 'nt':
@@ -55,14 +53,7 @@ def install(options):
5553
src.copytree(dst)
5654
elif not dst.exists():
5755
src.symlink(dst)
58-
# Symlink the build folder to the parent
59-
docs = path('..') / '..' / "docs" / 'build' / 'html'
60-
docs_dest = path(__file__).dirname() / plugin_name / "docs"
61-
docs_link = docs_dest / 'html'
62-
if not docs_dest.exists():
63-
docs_dest.mkdir()
64-
if not docs_link.islink():
65-
docs.symlink(docs_link)
56+
6657

6758
@task
6859
@cmdopts([

0 commit comments

Comments
 (0)