Fixed go build arg order.

geesefs-0-30-9
Aaron Jacobs 2015-03-24 08:53:52 +11:00
parent d12a25db1c
commit 53d662ca0b
1 changed files with 2 additions and 2 deletions

View File

@ -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 {