Details
-
Question
-
Status: Open
-
Major
-
Resolution: Unresolved
-
0.15.0, 0.16.0
-
None
-
None
Description
The last command in `test/go/genmock.sh` is:
chmod a+w -R $GOPATH && rm -Rf $GOPATH
When this is running the following error is seen:
chmod: -R: No such file or directory
The command should be changed to:
chmod -R a+w $GOPATH && rm -Rf $GOPATH