diff --git a/manifests/squinkylabs-plug1.json b/manifests/squinkylabs-plug1.json index c3c31aeb..0edf7542 100644 --- a/manifests/squinkylabs-plug1.json +++ b/manifests/squinkylabs-plug1.json @@ -5,8 +5,8 @@ "license": "MIT", "manualUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md", "sourceUrl": "https://github.com/squinkylabs/SquinkyVCV", - "latestVersion": "0.6.3", + "latestVersion": "0.6.4", "repoVersion": "0.6.4", - "buildTimestamp": 1524781490, + "buildTimestamp": 1527478114, "status": "available" } \ No newline at end of file diff --git a/scripts/build_updates.py b/scripts/build_updates.py index 0d0dc229..2305f06d 100644 --- a/scripts/build_updates.py +++ b/scripts/build_updates.py @@ -56,7 +56,6 @@ for repo in repos: manifest_filename = "manifests/" + slug + ".json" with open(manifest_filename, "r") as f: manifest = json.load(f) - print(manifest) # We need a repoVersion to build if 'repoVersion' not in manifest: @@ -90,5 +89,8 @@ for repo in repos: 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")