fix(sound-algo): remove hardcoded user paths

This commit is contained in:
L'électron rare
2026-05-13 13:38:35 +02:00
parent daba927b1e
commit 1ec57ae3f9
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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;
+1 -1
View File
@@ -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;
+1 -1
View File
@@ -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 -----------