diff --git a/pkg/shaman/checkout/manager.go b/pkg/shaman/checkout/manager.go index b2726dc3..d4302219 100644 --- a/pkg/shaman/checkout/manager.go +++ b/pkg/shaman/checkout/manager.go @@ -201,7 +201,9 @@ func (m *Manager) SymlinkToCheckout(blobPath, checkoutPath, symlinkRelativePath // Change the modification time of the blob to mark it as 'referenced' just now. m.wg.Add(1) go func() { - touchFile(blobPath) + if err := touchFile(blobPath); err != nil { + logger.Warn().Err(err).Msg("shaman: unable to touch blob path") + } m.wg.Done() }()