Commit 53d662ca authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed go build arg order.

parent d12a25db
......@@ -88,9 +88,9 @@ func buildMountSample() (toolPath string, err error) {
cmd := exec.Command(
"go",
"build",
"github.com/jacobsa/fuse/samples/mount_sample",
"-o",
mountSamplePath)
mountSamplePath,
"github.com/jacobsa/fuse/samples/mount_sample")
output, err := cmd.CombinedOutput()
if err != nil {
......
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