Browse Source

Fix buildTimestamp lookup for v2 packages. Update manifest cache.

pull/785/head
Andrew Belt 3 years ago
parent
commit
70e91da6f8
2 changed files with 138 additions and 137 deletions
  1. +136
    -135
      manifests-cache.json
  2. +2
    -2
      scripts/update_cache.py

+ 136
- 135
manifests-cache.json
File diff suppressed because it is too large
View File


+ 2
- 2
scripts/update_cache.py View File

@@ -15,8 +15,8 @@ def get_plugin_build(plugin):
slug = plugin['slug']
version = plugin['version']
arch = 'lin'
package_filename = f"{slug}-{version}-{arch}.zip"
package_path = PACKAGES_DIR + "/" + package_filename
package_filename = f"{slug}-{version}-{arch}.vcvplugin"
package_path = os.path.join(PACKAGES_DIR, package_filename)
return os.path.getmtime(package_path)




Loading…
Cancel
Save