We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fcbead commit ae60e68Copy full SHA for ae60e68
index.js
@@ -6,7 +6,7 @@ const port = 3000
6
7
const env_list = process.env
8
for(var i in env_list) {
9
- if(i.includes('PAT_')){
+ if(i.startsWith('PAT_')){
10
org_pat_map[i.replace('PAT_', '')] = env_list[i].trim()
11
}
12
0 commit comments