Skip to content

Commit

Permalink
Fix 80 columns limit
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Aug 21, 2024
1 parent 650af84 commit bf01477
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bind-control-server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export function bindControlServer(app, custom) {
if (app.options.disableHttpServer) {
if (app.options.controlSecret) {
let err = new Error(
'`controlSecret` can not be set together with `disableHttpServer` option'
'`controlSecret` can not be set together ' +
'with `disableHttpServer` option'
)
err.logux = true
throw err
Expand Down

0 comments on commit bf01477

Please sign in to comment.