Skip to content

Commit 61f6744

Browse files
committedDec 2, 2019
Fix source path in paver install while creating the symbolic link in the user Qgis plugin dir
1 parent 7cc7e96 commit 61f6744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pavement.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def setup():
6565
def install(options):
6666
'''install plugin to qgis'''
6767
plugin_name = options.plugin.name
68-
src = path(__file__).dirname() / plugin_name
68+
src = path(__file__).dirname()
6969
if platform.system() == "Windows":
7070
dst = path('~/AppData/Roaming/QGIS/QGIS3/profiles/default/python/plugins').expanduser() / plugin_name
7171
if platform.system() == "Darwin":

0 commit comments

Comments
 (0)
Please sign in to comment.