Skip to content

Commit 14471c6

Browse files
Mac installer: fixed setting a portable path. (#1358) Closes #1357
1 parent 47a8726 commit 14471c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

installer/mac/Install OSARA.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function isPortableReaper ( dir ) {
2222
finder.exists(Path(dir + "/REAPER.app")) ||
2323
finder.exists(Path(dir + "/REAPER-ARM.app")) ||
2424
finder.exists(Path(dir + "/REAPER64.app")) ||
25-
finder.exists(Path(dir + "REAPER32.app")) )
25+
finder.exists(Path(dir + "/REAPER32.app")) )
2626
}
2727

2828
function run(argv) {
@@ -45,7 +45,7 @@ function run(argv) {
4545
defaultButton: "Standard REAPER Installation",
4646
cancelButton: "Cancel"
4747
});
48-
var portable = (res.buttonReturned === "Portable Reaper Installation");
48+
var portable = (res.buttonReturned === "Portable REAPER Installation");
4949
var target;
5050
if (portable === true) {
5151
while(true) {

0 commit comments

Comments
 (0)