We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc4b4a4 commit d098e96Copy full SHA for d098e96
pavement.py
@@ -33,15 +33,13 @@
33
)
34
35
36
-
37
@task
38
def setup(options):
39
pass
40
41
42
def install(options):
43
'''install plugin to qgis'''
44
- builddocs(options)
45
plugin_name = options.plugin.name
46
src = path(__file__).dirname() / plugin_name
47
if os.name == 'nt':
@@ -55,14 +53,7 @@ def install(options):
55
53
src.copytree(dst)
56
54
elif not dst.exists():
57
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)
+
66
67
68
@cmdopts([
0 commit comments