From 5af8d47dc3384bbcffa629afee52f8c7324d9847 Mon Sep 17 00:00:00 2001 From: David Wronek Date: Sat, 29 Aug 2026 13:12:09 +0200 Subject: [PATCH] dumpyara: resolve relative path when using custom output directory The relative path causes issues with AIK in the nixpkgs package for dumpyara. Signed-off-by: David Wronek --- dumpyara/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumpyara/main.py b/dumpyara/main.py index 1cf288c..7a91325 100644 --- a/dumpyara/main.py +++ b/dumpyara/main.py @@ -33,7 +33,7 @@ def main(): output = Path.cwd() / args.file.stem if args.output: - output = args.output + output = args.output.resolve() output_path = dumpyara(args.file, output, args.debug)