Skip to content

Commit 264ebfd

Browse files
Merge pull request #75 from cmoog/fix-orgs
fix: parse `ORGS` environment variable properly
2 parents 6ec2bf0 + c21f8ac commit 264ebfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func Init() Config {
5151
}
5252
orgs := os.Getenv("ORGS")
5353
if orgs != "" {
54-
appConfig.SetOrganisations(strings.Split(repos, ", "))
54+
appConfig.SetOrganisations(strings.Split(orgs, ", "))
5555
}
5656
users := os.Getenv("USERS")
5757
if users != "" {

0 commit comments

Comments
 (0)