mirror of
https://github.com/status-im/react-native.git
synced 2025-02-03 21:24:31 +00:00
Log exit code
Reviewed By: @martinbigio Differential Revision: D2467457
This commit is contained in:
parent
cee01bef4f
commit
7806c0875b
@ -33,7 +33,10 @@ class SocketServer {
|
||||
options
|
||||
);
|
||||
resolve(this);
|
||||
process.on('exit', () => fs.unlinkSync(sockPath));
|
||||
process.on('exit', code => {
|
||||
debug('exit code:', code);
|
||||
fs.unlinkSync(sockPath);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user