We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4efcff5 commit ded1510Copy full SHA for ded1510
src/caddy/index.ts
@@ -67,7 +67,7 @@ function testCaddy() {
67
chmodSync(caddyPath, 0o755)
68
const child = process.platform === 'win32' ? spawn(caddyPath, []) : spawn('sudo', [caddyPath])
69
child.on('close', () => {
70
- return resolve(true)
+ return resolve(false)
71
})
72
child.on('error', (err) => {
73
return reject(err)
0 commit comments