Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolson committed Sep 10, 2023
1 parent 531007e commit f76a78f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/log/log.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class LogService {
client.emit('stdout', '\n\r');
client.emit('stdout', color.red(`The log tail command "${command.join(' ')}" exited with code ${code.exitCode}.\n\r`));
client.emit('stdout', color.red('Please check the command in your config.json is correct.\n\r\n\r'));
client.emit('stdout', color.cyan('See https://github.com/homebridge/homebridge-config-ui-x#log-viewer-configuration for instructions.\r\n'));
client.emit('stdout', color.cyan('See https://github.com/homebridge/homebridge-config-ui-x/wiki/Manual-Configuration#log-viewer-configuration for instructions.\r\n'));
}
} catch (e) {
// the client socket probably closed
Expand Down
2 changes: 1 addition & 1 deletion src/modules/plugins/plugins.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ export class PluginsService {
client.emit('stdout', `${path.resolve(cwd, 'node_modules')}\n\r\n\r`);
client.emit('stdout', color.yellow('This may cause the operation to fail.\n\r'));
client.emit('stdout', color.yellow('See the docs for details on how to enable sudo mode:\n\r'));
client.emit('stdout', color.yellow('https://github.com/homebridge/homebridge-config-ui-x#sudo-mode\n\r\n\r'));
client.emit('stdout', color.yellow('https://github.com/homebridge/homebridge-config-ui-x/wiki/Manual-Configuration#sudo-mode\n\r\n\r'));
}
}

Expand Down

0 comments on commit f76a78f

Please sign in to comment.