Browse Source

Update squinkylabs build

pull/514/head
Andrew Belt 7 years ago
parent
commit
626084290d
2 changed files with 7 additions and 5 deletions
  1. +2
    -2
      manifests/squinkylabs-plug1.json
  2. +5
    -3
      scripts/build_updates.py

+ 2
- 2
manifests/squinkylabs-plug1.json View File

@@ -5,8 +5,8 @@
"license": "MIT", "license": "MIT",
"manualUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md", "manualUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md",
"sourceUrl": "https://github.com/squinkylabs/SquinkyVCV", "sourceUrl": "https://github.com/squinkylabs/SquinkyVCV",
"latestVersion": "0.6.3",
"latestVersion": "0.6.4",
"repoVersion": "0.6.4", "repoVersion": "0.6.4",
"buildTimestamp": 1524781490,
"buildTimestamp": 1527478114,
"status": "available" "status": "available"
} }

+ 5
- 3
scripts/build_updates.py View File

@@ -56,7 +56,6 @@ for repo in repos:
manifest_filename = "manifests/" + slug + ".json" manifest_filename = "manifests/" + slug + ".json"
with open(manifest_filename, "r") as f: with open(manifest_filename, "r") as f:
manifest = json.load(f) manifest = json.load(f)
print(manifest)


# We need a repoVersion to build # We need a repoVersion to build
if 'repoVersion' not in manifest: if 'repoVersion' not in manifest:
@@ -90,5 +89,8 @@ for repo in repos:
json.dump(manifest, f, indent=" ") json.dump(manifest, f, indent=" ")




print()
print("Built " + ",".join(built_repos))
if built_repos:
print()
print("Built " + ",".join(built_repos))
else:
print("Nothing to build")

Loading…
Cancel
Save