Skip to content

Commit b7044ab

Browse files
committed
Ensure build output directory is created
`tinygo build -o /path/to/out .` expected `/path/to/out` to already exist, which is different behaviour to `go build`. This change ensures tinygo creates any directories needed to be able to build to the specified output dir.
1 parent 127557d commit b7044ab

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

builder/build.go

+5
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,11 @@ func Build(pkgName, outpath, tmpdir string, config *compileopts.Config) (BuildRe
604604
},
605605
}
606606

607+
// Create the output directory, if needed
608+
if err := os.MkdirAll(filepath.Dir(outpath), 0755); err != nil {
609+
return result, err
610+
}
611+
607612
// Check whether we only need to create an object file.
608613
// If so, we don't need to link anything and will be finished quickly.
609614
outext := filepath.Ext(outpath)

0 commit comments

Comments
 (0)