Browse Source

Update builds

pull/469/head
Andrew Belt 7 years ago
parent
commit
dfa1da89ad
3 changed files with 15 additions and 8 deletions
  1. +5
    -2
      manifests/alto777_LFSR.json
  2. +3
    -3
      manifests/moDllz.json
  3. +7
    -3
      scripts/build_updates.py

+ 5
- 2
manifests/alto777_LFSR.json View File

@@ -5,5 +5,8 @@
"license": "BSD-3-Clause",
"sourceUrl": "https://github.com/alto777/LFSR",
"manualUrl": "https://github.com/alto777/LFSR/README.md",
"repoVersion": "0.6.02"
}
"repoVersion": "0.6.02",
"latestVersion": "0.6.02",
"buildTimestamp": 1523522975,
"status": "available"
}

+ 3
- 3
manifests/moDllz.json View File

@@ -4,8 +4,8 @@
"license": "BSD-3-Clause",
"manualUrl": "https://drive.google.com/file/d/12kjCLSeyaaqXEvfS1c4HcnfrrbHeQ0ot/view",
"sourceUrl": "https://github.com/dllmusic/VCV_moDllz",
"latestVersion": "0.6.1",
"latestVersion": "0.6.2",
"repoVersion": "0.6.2",
"status": "available",
"buildTimestamp": 1522750927
}
"buildTimestamp": 1523522964
}

+ 7
- 3
scripts/build_updates.py View File

@@ -31,9 +31,12 @@ def build_lin(slug):


def move_package(slug):
os.system('mkdir -p downloads')
if os.system(f'mv repos/{slug}/dist/{slug}-*.zip downloads/'):
raise Exception(f"No package found for {slug}")
system('mkdir -p downloads')
system(f'mv repos/{slug}/dist/{slug}-*.zip downloads/')


def delete_package(slug):
system(f'rm -f downloads/{slug}-*.zip')


for filename in glob.glob("manifests/*"):
@@ -59,6 +62,7 @@ for filename in glob.glob("manifests/*"):
except Exception as e:
print(e)
input("Enter to proceed")
delete_package(slug)
continue

# Update build information


Loading…
Cancel
Save