with lots of repos

This commit is contained in:
2022-09-14 23:34:45 +02:00
parent 896b28188b
commit 6af0ecec33
3 changed files with 33 additions and 2 deletions

View File

@@ -23,7 +23,12 @@ func (a *Action) Execute(ctx context.Context, area *storage.Area) error {
if err != nil {
return err
}
exe(ctx, area.Path)
err = exe(ctx, area.Path)
if err != nil {
return err
}
zap.L().Debug("Execution done")
default:
return errors.New("could not determine action type")