Skip to content

Commit 2200408

Browse files
acburdineErisDS
authored andcommitted
fix: invalid boolean logic *facepalm*
1 parent 8fffc1f commit 2200408

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commands/config/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class ConfigCommand extends Command {
8080
});
8181
}
8282

83-
if (!argv.db || argv.db === 'sqlite3') {
83+
if (!argv.db || argv.db !== 'sqlite3') {
8484
prompts.push({
8585
type: 'input',
8686
name: 'dbhost',

0 commit comments

Comments
 (0)