Skip to content

Commit

Permalink
fix default BWS binary path in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vokinpirks committed Sep 11, 2023
1 parent c0a400d commit e5d1a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/vokinpirks/util/OS.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class OS {

public static String defaultBwsBinaryPath() {
if (isWindows()) {
return "%ProgramW6432%\\Bitwig Studio\\${bws.version}\\bin";
return "C:\\Program Files\\Bitwig Studio\\${bws.version}\\bin";
} else if (isMac()) {
return "/Applications/Bitwig Studio/Contents/MacOS";
} else if (isUnix()) {
Expand Down

0 comments on commit e5d1a38

Please sign in to comment.