Skip to content

Commit d64a4a2

Browse files
committedApr 27, 2021
findConfigFile: only process.exit if silent option is falsy
1 parent cbe4258 commit d64a4a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/lib/findConfigFile.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ export default {
6666
URL: 'https://example.com', ${log.paint('green', '// the root url of the site')}
6767
WEB_ROOT: '/', ${log.paint('green', '// gets appended to the URL, should start and end with a /')}
6868
}`)
69-
}
7069

71-
process.exit()
70+
process.exit()
71+
}
7272
}
7373

7474
return filePath

0 commit comments

Comments
 (0)
Please sign in to comment.