From 1727f278f26b106433b30783fae065c495613249 Mon Sep 17 00:00:00 2001 From: Hitoshi Mitake Date: Fri, 20 May 2016 13:41:06 +0900 Subject: [PATCH] test: remove a directory correctly Current rm in the test script cannot the gopath/src correctly and results test failure. --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 3073097a8..d9b7ff0e8 100755 --- a/test +++ b/test @@ -22,7 +22,7 @@ source ./build # Set up gopath so tests use vendored dependencies export GOPATH=${PWD}/gopath -rm -f $GOPATH/src +rm -rf $GOPATH/src mkdir -p $GOPATH ln -s ${PWD}/cmd/vendor $GOPATH/src