diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-09-16 10:08:05 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-09-16 10:08:05 +0200 |
commit | ba0e7622cdab3ada67f9597ee290b04ee1df5edb (patch) | |
tree | 531fbd27c855c56d09e4295fd039c46327f748f8 | |
parent | c2babb65580d4dce3a0fc8834dd05fe177227b6e (diff) |
Make `push_nupkgs_local` absolute
Ensures the `push_nupkgs_local` argument in build_assemblies.py is an
absolute path so the argument can be
given as a relative path and it will be converted.
-rwxr-xr-x | modules/mono/build_scripts/build_assemblies.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/mono/build_scripts/build_assemblies.py b/modules/mono/build_scripts/build_assemblies.py index 6f66ce9efa..d78a9c7db8 100755 --- a/modules/mono/build_scripts/build_assemblies.py +++ b/modules/mono/build_scripts/build_assemblies.py @@ -315,6 +315,8 @@ def main(): output_dir = os.path.abspath(args.godot_output_dir) + push_nupkgs_local = os.path.abspath(args.push_nupkgs_local) if args.push_nupkgs_local else None + msbuild_tool = find_any_msbuild_tool(args.mono_prefix) if msbuild_tool is None: @@ -327,7 +329,7 @@ def main(): output_dir, args.godot_platform, args.dev_debug, - args.push_nupkgs_local, + push_nupkgs_local, args.float, ) sys.exit(exit_code) |