Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit b35ef6b

Browse files
committed
Bug in IS_LOCAL check
1 parent 3df66a7 commit b35ef6b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: scripts/migrate-user-mapping.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ const dbHelper = require('../src/common/db-helper');
44
const GithubUserMapping = require('../src/models').GithubUserMapping;
55
const GitlabUserMapping = require('../src/models').GitlabUserMapping;
66

7-
if (process.env.IS_LOCAL) {
7+
if (process.env.IS_LOCAL=="true") {
8+
console.log("IS LOCAL")
89
AWS.config.update({
910
endpoint: 'http://localhost:8000'
1011
});

0 commit comments

Comments
 (0)