Fix installation scripts

Tildes don't get expanded in environment variables.
This commit is contained in:
Robbert van der Helm
2020-05-04 21:23:10 +02:00
parent fa8c1cd8f0
commit c2f473dfda
+2 -2
View File
@@ -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'" |