Closed nlepage closed 5 years ago
Hey it's me again :slightly_smiling_face:
I tried to improve the readability in pack.go.
pack.go
The only thing I'm unsure about is whether it is dangerous or not to remove the call to os.RemoveAll(fp) before calling parser.Parse().
os.RemoveAll(fp)
parser.Parse()
Any changes you want to make it easier to follow along, please. The CLI code definitely needs a bit of love.
Hey it's me again :slightly_smiling_face:
I tried to improve the readability in
pack.go
.The only thing I'm unsure about is whether it is dangerous or not to remove the call to
os.RemoveAll(fp)
before callingparser.Parse()
.