mc: Fix path to zip and unzip (fixes #2362)
[termux-packages] / packages / nodejs-current / lib-child_process.js.patch
CommitLineData
a61e7e45
FF
1diff -u -r ../node-v6.2.0/lib/child_process.js ./lib/child_process.js
2--- ../node-v6.2.0/lib/child_process.js 2016-05-17 15:53:06.000000000 -0400
3+++ ./lib/child_process.js 2016-05-18 16:31:45.574685443 -0400
4@@ -335,7 +335,7 @@
5 if (typeof options.shell === 'string')
6 file = options.shell;
7 else if (process.platform === 'android')
8- file = '/system/bin/sh';
9+ file = '@TERMUX_PREFIX@/bin/sh';
10 else
11 file = '/bin/sh';
12 args = ['-c', command];