Browse Source

Tweak build scripts.

v1
Andrew Belt 5 years ago
parent
commit
4f124c6892
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      scripts/add_package.py
  2. +1
    -1
      scripts/update_builds.py

+ 2
- 2
scripts/add_package.py View File

@@ -32,9 +32,9 @@ for package_src in plugin_packages:
with open(manifest_dest, "w") as f:
json.dump(manifest, f, indent=" ")

# Move package
# Copy package
package_dest = os.path.join(PACKAGES_DIR, os.path.basename(package_src))
shutil.move(package_src, package_dest)
build.system(f"cp '{package_src}' '{package_dest}'")
build.system(f"touch '{package_dest}'")

slugs.add(slug)


+ 1
- 1
scripts/update_builds.py View File

@@ -56,7 +56,7 @@ for plugin_dir in plugin_dirs:

built_slugs.append(slug)
# Open plugin issue thread
os.system(f"qutebrowser \"https://github.com/VCVRack/library/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+{slug}\" &")
os.system(f"qutebrowser \"https://github.com/VCVRack/library/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+in%3Atitle+{slug}\" &")


if not built_slugs:


Loading…
Cancel
Save