Conversation

Jarkko Sakkinen

To save some time upgrading all U-he plugins I did:

#!/usr/bin/env bash

set -e

wget -q --show-progress -r -np -nd -l1 -A Mac.zip https://uhe-dl.b-cdn.net/releases/ -P dl/
for file in dl/*.zip; do unzip -j -o "$file" -d staging "*.pkg"; done
for file in staging/*.pkg; do sudo installer -pkg "$file" -target /; done
1
0
0
BTW did not work for some reason. I had to GUI-install to get plugins actually working. Wonder what I'm doing wrong.

I.e. in #Bitwig the whole DAW crashes if I open plugins installed this manner. So I guess I use installer incorrectly.

@uheplugins #macOS
1
0
0

@jarkko @uheplugins I run the u-he installer without sudo. It just installs them in ~/.u-he and symlinks the plugins to ~/.vst3/ and ~/.clap/

0
0
1