From 3af77ad509b01ddd2d2757d739c856a504ae6e91 Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Sun, 25 Aug 2024 20:09:16 -0400 Subject: [PATCH] mods: pass the platform arg --- scripts/mod-bundler/bundle-linux.py | 2 +- scripts/mod-bundler/bundle-macos.py | 2 +- scripts/mod-bundler/bundle-windows.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/mod-bundler/bundle-linux.py b/scripts/mod-bundler/bundle-linux.py index c4f751c..2efd953 100644 --- a/scripts/mod-bundler/bundle-linux.py +++ b/scripts/mod-bundler/bundle-linux.py @@ -7,7 +7,7 @@ patch_mod_timestamp_and_version_info, ) -args = get_args() +args = get_args("linux") print(args) diff --git a/scripts/mod-bundler/bundle-macos.py b/scripts/mod-bundler/bundle-macos.py index f2b7290..548c587 100644 --- a/scripts/mod-bundler/bundle-macos.py +++ b/scripts/mod-bundler/bundle-macos.py @@ -7,7 +7,7 @@ patch_mod_timestamp_and_version_info, ) -args = get_args() +args = get_args("macos-intel") print(args) diff --git a/scripts/mod-bundler/bundle-windows.py b/scripts/mod-bundler/bundle-windows.py index 70c79ee..9d85eef 100644 --- a/scripts/mod-bundler/bundle-windows.py +++ b/scripts/mod-bundler/bundle-windows.py @@ -7,7 +7,7 @@ patch_mod_timestamp_and_version_info, ) -args = get_args() +args = get_args("windows") print(args)