folder management may have been overlooked for output dirs #13
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
cmdDownload, cmdPipeline, and handleAPIDownload all call os.MkdirAll before proceeding. cmdExtract and handleAPIExtract were missing these calls — they relied on the bash script creating the directories, which is not robust (e.g., if the script fails before mkdir).
Fixed in
bc12130: added os.MkdirAll to both cmdExtract and handleAPIExtract.