parent
ea57f91120
commit
382bd174c0
5
main.go
5
main.go
@ -8,6 +8,7 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/matryer/moq/pkg/moq"
|
"github.com/matryer/moq/pkg/moq"
|
||||||
)
|
)
|
||||||
@ -54,6 +55,10 @@ func main() {
|
|||||||
}
|
}
|
||||||
// create the file
|
// create the file
|
||||||
if len(*outFile) > 0 {
|
if len(*outFile) > 0 {
|
||||||
|
err = os.MkdirAll(filepath.Dir(*outFile), 0755)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
err = ioutil.WriteFile(*outFile, buf.Bytes(), 0644)
|
err = ioutil.WriteFile(*outFile, buf.Bytes(), 0644)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user