File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7575
7676 try {
7777 console . log ( '🔨 Running node-gyp rebuild with verbose output...' ) ;
78- execSync ( 'npx node-gyp rebuild --verbose' , {
78+ execSync ( 'node-gyp rebuild --verbose' , {
7979 cwd : baseDir ,
8080 stdio : 'inherit' ,
8181 env : {
9393 // Try alternative approach with explicit make path
9494 console . log ( '🔄 Trying alternative build approach with explicit make...' ) ;
9595 try {
96- execSync ( 'npx node-gyp configure && /usr/bin/make BUILDTYPE=Release -C build' , {
96+ execSync ( 'node-gyp configure && /usr/bin/make BUILDTYPE=Release -C build' , {
9797 cwd : baseDir ,
9898 stdio : 'inherit'
9999 } ) ;
@@ -109,7 +109,7 @@ try {
109109 mkdirSync ( objDir , { recursive : true } ) ;
110110
111111 // Try building again
112- execSync ( 'npx node-gyp build' , {
112+ execSync ( 'node-gyp build' , {
113113 cwd : baseDir ,
114114 stdio : 'inherit'
115115 } ) ;
You can’t perform that action at this time.
0 commit comments