Files
termux-packages/packages/nodejs-lts/lib-os.js.patch
termux-pacman-bot 04edb498c3 chore(main/nodejs-lts): pick up changes for how we configure from nodejs
Although --debug is not needed currently for nodejs-lts, let's pick it
up before it is actually needed. Also would make things much more
standard between the two packages
2025-12-10 10:42:59 +00:00

12 lines
287 B
Diff

--- ./lib/os.js.orig 2024-12-17 09:49:30.186911586 +0530
+++ ./lib/os.js 2024-12-17 09:50:17.869990762 +0530
@@ -190,7 +190,7 @@
return path;
}
- return getTempDir() || '/tmp';
+ return getTempDir() || '@TERMUX_PREFIX@/tmp';
}
tmpdir[SymbolToPrimitive] = () => tmpdir();