Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
mods: pass the platform arg
Browse files Browse the repository at this point in the history
  • Loading branch information
xTVaser committed Aug 26, 2024
1 parent 2cfb596 commit 3af77ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/mod-bundler/bundle-linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
patch_mod_timestamp_and_version_info,
)

args = get_args()
args = get_args("linux")

print(args)

Expand Down
2 changes: 1 addition & 1 deletion scripts/mod-bundler/bundle-macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
patch_mod_timestamp_and_version_info,
)

args = get_args()
args = get_args("macos-intel")

print(args)

Expand Down
2 changes: 1 addition & 1 deletion scripts/mod-bundler/bundle-windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
patch_mod_timestamp_and_version_info,
)

args = get_args()
args = get_args("windows")

print(args)

Expand Down

0 comments on commit 3af77ad

Please sign in to comment.