content: provide more context for lockfile error
Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
parent
b542cc19ad
commit
ab4bfc79e9
1 changed files with 3 additions and 2 deletions
|
@ -256,9 +256,10 @@ func (cs *ContentStore) ingestPaths(ref string) (string, string, lockfile.Lockfi
|
|||
return "", "", "", errors.Errorf("ref must be a single path component")
|
||||
}
|
||||
|
||||
lock, err := lockfile.New(filepath.Join(fp, "lock"))
|
||||
lockfilePath := filepath.Join(fp, "lock")
|
||||
lock, err := lockfile.New(lockfilePath)
|
||||
if err != nil {
|
||||
return "", "", "", errors.Wrap(err, "error creating lockfile")
|
||||
return "", "", "", errors.Wrapf(err, "error creating lockfile %v", lockfilePath)
|
||||
}
|
||||
|
||||
return fp, filepath.Join(fp, "data"), lock, nil
|
||||
|
|
Loading…
Reference in a new issue