Remove old workaround for rare Ubuntu path issue

This got fixed properly in `get_file_location()`, but this function
still contained an old hack.
This commit is contained in:
Robbert van der Helm
2020-07-21 01:04:20 +02:00
parent e3edffb8f8
commit c83680a21a
2 changed files with 6 additions and 2 deletions
+5
View File
@@ -8,6 +8,11 @@ Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- Fixed rare plugin location detection issue related to the plugin and host
detection fix in yabridge 1.2.0.
### yabridgectl
- Added a check to `yabridgectl sync` to verify that the currently installed
+1 -2
View File
@@ -138,8 +138,7 @@ fs::path find_vst_host(PluginArchitecture plugin_arch, bool use_plugin_groups) {
}
fs::path find_vst_plugin() {
const fs::path this_plugin_path =
"/" / fs::path("/" + get_this_file_location().string());
const fs::path this_plugin_path = get_this_file_location();
fs::path plugin_path(this_plugin_path);
plugin_path.replace_extension(".dll");