|
|
Thread Tools | Display Modes |
10-05-2018, 02:12 AM | #1 |
Human being with feelings
Join Date: May 2015
Location: Québec, Canada
Posts: 5,265
|
Per-project JSFX does not support projects opened with a relative path (FIXED)
Code:
$ pwd /home/cfillion $ strace reaper test.RPP 2>&1 | grep Test stat("/Effects/Test", 0x7fffb62e5750) = -1 ENOENT (No such file or directory) stat("/home/cfillion/.config/REAPER/Effects/<Project>/Test", 0x7fffb62e1030) = -1 ENOENT (No such file or directory) $ strace reaper /home/cfillion/test.RPP 2>&1 | grep Test stat("/home/cfillion/Effects/Test", {st_mode=S_IFREG|0644, st_size=292, ...}) = 0 stat("/home/cfillion/Effects/<Project>/Test", 0x7ffd961273b0) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/cfillion/Effects/Test", O_RDONLY) = 26 stat("/home/cfillion/.config/REAPER/presets-js-_Project__Test.ini", 0x7ffd9612d510) = -1 ENOENT (No such file or directory) stat("/home/cfillion/Effects/Test.rpl", 0x7ffd9612d6e0) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/cfillion/.config/REAPER/presets/js-_Project__Test.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
__________________
🎁 Donate (PayPal) | Sponsor (GitHub) | The Endless Journey (Keyboard Ensemble) ReaPack, a package manager for REAPER | SWS 2.14 is now available in ReaPack [new!] Developer tools: Lua profiler | Interactive ReaScript | ReaPack Editor | ReaImGui Last edited by cfillion; 10-05-2018 at 02:51 AM. |
10-05-2018, 04:48 PM | #2 |
Administrator
Join Date: Jan 2005
Location: NYC
Posts: 16,117
|
Hmm yeah I suppose relative paths passed to the command line need to get converted to absolute paths. For now you can use ./reaper `pwd`/test.RPP or whatnot
|
Thread Tools | |
Display Modes | |
|
|