Skip to content

Commit

Permalink
Fix changed URL for VSTSDK (#50)
Browse files Browse the repository at this point in the history
Please someone else check that this works for them, but it sure works for me!
  • Loading branch information
etheory authored Jun 26, 2023
1 parent a10db8b commit a57ebc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions get_steinberg_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ def __call__(self, block_count, block_size, total):
self.progress = progress


url = "http://www.steinberg.net/sdk_downloads/vstsdk366_27_06_2016_build_61.zip" # noqa
url = "https://www.steinberg.net/vst3sdk" # noqa
urlretrieve(url, "Steinberg.zip", ProgressReporter())

zip = ZipFile('Steinberg.zip')
zip.extractall()

shutil.rmtree("Steinberg", ignore_errors=True)
os.rename("VST3 SDK", "Steinberg")
os.rename("VST_SDK", "Steinberg")
shutil.rmtree("Steinberg.zip", ignore_errors=True)

0 comments on commit a57ebc6

Please sign in to comment.