From c36b03a01c3f848644aa67ffbcdcd4d1063371ec Mon Sep 17 00:00:00 2001 From: Wanzong Peng <605144885@qq.com> Date: Sat, 4 Apr 2026 22:57:16 +0800 Subject: [PATCH] Create output directory if it doesn't exist This file will run fail in container. --- manpage_parser/parser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/manpage_parser/parser.py b/manpage_parser/parser.py index 0a8413a..7f63e17 100755 --- a/manpage_parser/parser.py +++ b/manpage_parser/parser.py @@ -7,6 +7,7 @@ current_path = sys.path[0] output_path = os.path.join(current_path, "output") +os.makedirs(output_path, exist_ok=True) groff_util = GroffUtil()