Don't die for bad aliases
This commit is contained in:
@ -111,7 +111,7 @@ ALIASES:
|
||||
for _, a := range aliases {
|
||||
for _, p := range projects {
|
||||
// Already have it
|
||||
if a.ProjectID == p.ID && a.Remote == p.Remote {
|
||||
if p == nil || (a.ProjectID == p.ID && a.Remote == p.Remote) {
|
||||
continue ALIASES
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user