multi-repo & multi-arch support #112

Merged
Jef Roosens merged 19 commits from multi-arch-repos-v2 into dev 2022-04-07 16:14:09 +02:00
Showing only changes of commit a5ac0b6956 - Show all commits

View file

@ -108,11 +108,11 @@ fn get_repo_id_by_prefix(conf Config, id_prefix string) ?string {
} }
if res.len == 0 { if res.len == 0 {
eprintln('No repo found for given prefix.') return error('No repo found for given prefix.')
} }
if res.len > 1 { if res.len > 1 {
eprintln('Multiple repos found for given prefix.') return error('Multiple repos found for given prefix.')
} }
return res[0] return res[0]