We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0b874ce + 701cd1c commit e0e77c6Copy full SHA for e0e77c6
python/plugins/MetaSearch/pavement.py
@@ -123,7 +123,7 @@ def package():
123
if file_add.endswith('.pyc') or file_add in skip_files:
124
continue
125
filepath = os.path.join(root, file_add)
126
- relpath = os.path.relpath(filepath)
+ relpath = os.path.join(PLUGIN_NAME, os.path.relpath(filepath))
127
zipf.write(filepath, relpath)
128
return package_file # return name of created zipfile
129
0 commit comments