Commit 5a149a72 authored by Ronan Abhamon's avatar Ronan Abhamon

feat(src/externals/single-application/SingleApplication): log SIGPIPE on GNU Linux

parent ae37c483
......@@ -255,6 +255,10 @@ void SingleApplicationPrivate::connectToPrimary (int msecs, char connectionType)
}
cout << "[PROCESS ABNORMALLY TERMINATED]: " << signum << endl;
#ifdef Q_OS_LINUX
cout << "Please to remove your ~/.ICEauthority file and rerun." << endl;
#endif // ifdef Q_OS_UNIX
::exit(128 + signum);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment