Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit 750f348

Browse files
committed
ci(circle): Enables builds without passwords.
1 parent ba75fb9 commit 750f348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/facade.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const db = connectToDb({
1111
connection: {
1212
database: process.env.KNEX_DATABASE,
1313
host: '127.0.0.1',
14-
...(process.env.KNEX_PASSWORD === undefined ? {} : {
14+
...(!process.env.KNEX_PASSWORD ? {} : {
1515
password: process.env.KNEX_PASSWORD,
1616
}),
1717
user: process.env.KNEX_USER,

0 commit comments

Comments
 (0)