From a1db7fa2013632fea215a38e37ce3bac200e809a Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Mon, 3 Jun 2019 23:13:42 +0200 Subject: [PATCH] corrected config include --- backend/src/seed/reset-db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/seed/reset-db.js b/backend/src/seed/reset-db.js index bcc29d78f..5f4319f73 100644 --- a/backend/src/seed/reset-db.js +++ b/backend/src/seed/reset-db.js @@ -1,5 +1,5 @@ import { cleanDatabase } from './factories' -import CONFIG from './config' +import CONFIG from './../config' if (!CONFIG.DEBUG) { throw new Error(`YOU CAN'T CLEAN THE DATABASE WITH DEBUG=${CONFIG.DEBUG}`)