fix(sound-algo): remove hardcoded user paths
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
|
||||
"=== e2e_02_load ===".postln;
|
||||
|
||||
~base = "/Users/electron/Documents/Projets_Creatifs/sound_algo-refonte-v2/";
|
||||
~base = thisProcess.nowExecutingPath !? { |p| p.dirname.dirname ++ "/" };
|
||||
~testCount = 0;
|
||||
~testFailed = 0;
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
"=== e2e_06_mixer ===".postln;
|
||||
|
||||
~base = "/Users/electron/Documents/Projets_Creatifs/sound_algo-refonte-v2/";
|
||||
~base = thisProcess.nowExecutingPath !? { |p| p.dirname.dirname ++ "/" };
|
||||
~testCount = 0;
|
||||
~testFailed = 0;
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ thisProcess.openUDPPort(~webBridgeIn);
|
||||
~webBridgeRelays.do { |addr| addr.sendMsg(path, *args) };
|
||||
};
|
||||
|
||||
~webBase = ~base ?? { "/Users/electron/Documents/Projets_Creatifs/sound_algo-refonte-v2/" };
|
||||
~webBase = ~base ?? { thisProcess.nowExecutingPath !? { |p| p.dirname ++ "/" } };
|
||||
~webHttpUrl = "http://localhost:3000";
|
||||
|
||||
// ---------- Auto-lancement serveur Node + ouverture pages -----------
|
||||
|
||||
Reference in New Issue
Block a user