From d41482375ea76e7352703d5e0f63594c19430d4f Mon Sep 17 00:00:00 2001 From: Benjamin Bohard Date: Tue, 2 Aug 2022 16:54:31 +0200 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9er=20le=20r=C3=A9pertoire=20de=20destin?= =?UTF-8?q?ation=20si=20il=20n=E2=80=99existe=20pas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package b/package index 8ef64e1..a83e7c7 100755 --- a/package +++ b/package @@ -74,6 +74,8 @@ if __name__ == "__main__": # Verify project directory project_dir = os.path.abspath(args.project_directory) output_dir = os.path.abspath(args.output) + if not os.path.exists(output_dir): + os.mkdir(output_dir) # Load build profile profile = tamarin.load_profile(args.profile, debug=args.debug)