Added README.txt for plugin dir in portable version.
This commit is contained in:
parent
f958dd2ab0
commit
30eaabb376
@ -516,9 +516,14 @@ def main():
|
|||||||
os.path.join(odir, "packages-info"))
|
os.path.join(odir, "packages-info"))
|
||||||
write_package_info_content(os.path.join(odir, 'packages-info', 'PACKAGES.txt'))
|
write_package_info_content(os.path.join(odir, 'packages-info', 'PACKAGES.txt'))
|
||||||
|
|
||||||
# Create empty plugins directory
|
# Create plugins directory with README.txt
|
||||||
plugindir = os.path.join(odir, "openslides", "plugins")
|
plugindir = os.path.join(odir, "openslides", "plugins")
|
||||||
os.makedirs(plugindir)
|
os.makedirs(plugindir)
|
||||||
|
readmetext = ["Please copy your plugin directory into this directory.\n", "\n",
|
||||||
|
"For more information about OpenSlides plugins see:\n",
|
||||||
|
"https://github.com/OpenSlides/OpenSlides/wiki/De%3APlugins\n"]
|
||||||
|
with open(os.path.join(plugindir, 'README.txt'), "w") as readme:
|
||||||
|
readme.writelines(readmetext)
|
||||||
|
|
||||||
# AUTHORS, LICENSE, README
|
# AUTHORS, LICENSE, README
|
||||||
write_metadatafile('AUTHORS', os.path.join(odir, 'AUTHORS.txt'))
|
write_metadatafile('AUTHORS', os.path.join(odir, 'AUTHORS.txt'))
|
||||||
|
Loading…
Reference in New Issue
Block a user