| @@ -4,8 +4,8 @@ | |||||
| "license": "BSD-3-Clause", | "license": "BSD-3-Clause", | ||||
| "manualUrl": "https://github.com/bogaudio/BogaudioModules/blob/master/README.md", | "manualUrl": "https://github.com/bogaudio/BogaudioModules/blob/master/README.md", | ||||
| "sourceUrl": "https://github.com/bogaudio/BogaudioModules", | "sourceUrl": "https://github.com/bogaudio/BogaudioModules", | ||||
| "latestVersion": "0.6.6", | |||||
| "repoVersion": "0.6.6", | |||||
| "latestVersion": "0.6.7", | |||||
| "repoVersion": "0.6.7", | |||||
| "status": "available", | "status": "available", | ||||
| "buildTimestamp": 1524688312 | |||||
| "buildTimestamp": 1529640918 | |||||
| } | } | ||||
| @@ -48,7 +48,9 @@ def delete_package(slug): | |||||
| repos = sys.argv[1:] | repos = sys.argv[1:] | ||||
| force_update = True | |||||
| if not repos: | if not repos: | ||||
| force_update = False | |||||
| repos = glob.glob("repos/*") | repos = glob.glob("repos/*") | ||||
| built_repos = [] | built_repos = [] | ||||
| @@ -63,7 +65,7 @@ for repo in repos: | |||||
| if 'repoVersion' not in manifest: | if 'repoVersion' not in manifest: | ||||
| continue | continue | ||||
| # Skip if update is not needed | # Skip if update is not needed | ||||
| if 'repoVersion' in manifest and 'latestVersion' in manifest and manifest['latestVersion'] == manifest['repoVersion']: | |||||
| if not force_update and 'repoVersion' in manifest and 'latestVersion' in manifest and manifest['latestVersion'] == manifest['repoVersion']: | |||||
| continue | continue | ||||
| # Build repo | # Build repo | ||||