Commit 99e6e482 authored by Fazlul Shahriar's avatar Fazlul Shahriar Committed by David du Colombier

os: handle ' is a directory' error as IsExist on Plan 9

This error is returned by os.Mkdir when the directory already exists.

This change fixes some upspin tests.

Change-Id: I9ad5aefebb32dff577726d537b4f3826d79868eb
Reviewed-on: https://go-review.googlesource.com/88656Reviewed-by: default avatarDavid du Colombier <0intro@gmail.com>
Run-TryBot: David du Colombier <0intro@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 4a7334b7
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
package os package os
func isExist(err error) bool { func isExist(err error) bool {
return checkErrMessageContent(err, " exists") return checkErrMessageContent(err, " exists", " is a directory")
} }
func isNotExist(err error) bool { func isNotExist(err error) bool {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment