diff --git a/src/commands/info.ts b/src/commands/info.ts index 6682aca..e288ba6 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -24,7 +24,7 @@ export default class Info extends Command { embed.addField('Language(s)', '<:ts:604565354554982401> TypeScript, <:Go:703449475405971466> Go', true); embed.addField('Runtime', `Node (${process.version})`, true); embed.addField('Compilers/Transpilers', `TypeScript [tsc] (${tscVersion}) | Go [gc] (${await this.client.util.exec('go version')})`, true); - embed.addField('Process Manager', `SystemD (${await this.client.util.exec('systemd --version')})`, true); + embed.addField('Process Manager', `SystemD (${(await this.client.util.exec('systemd --version')).split('\n')[0]})`, true); embed.addField('Discord Library', `Eris (${erisVersion})`, true); embed.addField('HTTP Server Library', `Express (${expressVersion})`, true); embed.addField('Database Library', `MongoDB w/ Mongoose ODM (${mongooseVersion})`, true);