mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
add more searchable info to the error message when ADD tries to go outside the context
This commit is contained in:
parent
ba6dd1d8d6
commit
96b5be9dd9
2 changed files with 2 additions and 2 deletions
|
@ -288,7 +288,7 @@ func (b *buildFile) addContext(container *Container, orig, dest string) error {
|
|||
destPath = destPath + "/"
|
||||
}
|
||||
if !strings.HasPrefix(origPath, b.context) {
|
||||
return fmt.Errorf("Forbidden path: %s", origPath)
|
||||
return fmt.Errorf("Forbidden path outside the build context: %s (%s)", orig, origPath)
|
||||
}
|
||||
fi, err := os.Stat(origPath)
|
||||
if err != nil {
|
||||
|
|
|
@ -483,7 +483,7 @@ func TestForbiddenContextPath(t *testing.T) {
|
|||
t.Fail()
|
||||
}
|
||||
|
||||
if err.Error() != "Forbidden path: /" {
|
||||
if err.Error() != "Forbidden path outside the build context: ../../ (/)" {
|
||||
t.Logf("Error message is not expected: %s", err.Error())
|
||||
t.Fail()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue