From c2f473dfdac1e0e57b7f1d0049dda4ad58cf15fb Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 4 May 2020 21:23:10 +0200 Subject: [PATCH] Fix installation scripts Tildes don't get expanded in environment variables. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 02847f14..4c15cc71 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ following script in Bash. This will skip any `.dll` files that are not actually VST plugins. ```shell -yabridge_home=~/.local/share/yabridge +yabridge_home=$HOME/.local/share/yabridge find "$HOME/.wine/drive_c/Program Files/Steinberg/VstPlugins" -type f -iname '*.dll' -print0 | xargs -0 -P$(nproc) -I{} bash -c "(winedump -j export '{}' | grep -qE 'VSTPluginMain|main|main_plugin') && printf '{}\0'" | @@ -111,7 +111,7 @@ You could also use a modified version of the installation script from the previous section to install yabridge for all of you VST plugins at once: ```shell -yabridge_home=~/.local/share/yabridge +yabridge_home=$HOME/.local/share/yabridge find "$HOME/.wine/drive_c/Program Files/Steinberg/VstPlugins" -type f -iname '*.dll' -print0 | xargs -0 -P$(nproc) -I{} bash -c "(winedump -j export '{}' | grep -qE 'VSTPluginMain|main|main_plugin') && printf '{}\0'" |