You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -179,6 +182,12 @@ function getExitError(code: number | null): Error | null {
179
182
);
180
183
}
181
184
185
+
if(code===127){
186
+
returnnewError(
187
+
`lame: Failed to execute '${executable}'. Exit code 127 usually indicates missing shared libraries or an unreadable binary. Run scripts/diagnose-lame.mjs for details.`,
188
+
);
189
+
}
190
+
182
191
if(code!==null){
183
192
returnnewError(`lame: Process exited with code ${code}`);
0 commit comments