🐛 fix windows process.getuid

This commit is contained in:
Flam3rboy 2021-10-10 11:13:51 +02:00
parent a61cbbe40c
commit f259a1fd3e

View File

@ -7,7 +7,7 @@ export function initStats() {
console.log(`[CPU] ${osu.cpu.model()} Cores x${osu.cpu.count()}`); console.log(`[CPU] ${osu.cpu.model()} Cores x${osu.cpu.count()}`);
console.log(`[System] ${os.platform()} ${os.arch()}`); console.log(`[System] ${os.platform()} ${os.arch()}`);
console.log(`[Process] running with pid: ${process.pid}`); console.log(`[Process] running with pid: ${process.pid}`);
if (process.getuid() === 0) { if (process.getuid && process.getuid() === 0) {
console.warn( console.warn(
red( red(
`[Process] Warning fosscord is running as root, this highly discouraged and might expose your system vulnerable to attackers. Please run fosscord as a user without root privileges.` `[Process] Warning fosscord is running as root, this highly discouraged and might expose your system vulnerable to attackers. Please run fosscord as a user without root privileges.`