Skip to content

Commit

Permalink
Change rootbuilder config >4.2.6 (link all but archives) + hardlinks …
Browse files Browse the repository at this point in the history
…without usvfsmode if supported
  • Loading branch information
ZashIn committed Sep 28, 2023
1 parent f449050 commit b43557d
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions games/game_cyberpunk2077.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,22 +95,23 @@ class Cyberpunk2077Game(BasicGame, mobase.IPluginFileMapper):
_root_mapping_blacklist = {GameDataPath.casefold(), "root", "bin"}

_root_builder_config: dict[str, mobase.MoVariant] = {
"usvfsmode": True,
"linkmode": True,
"usvfsmode": False,
"linkmode": True, # Use hardlinks only
"backup": True,
"cache": True,
"autobuild": True,
"redirect": True,
"installer": False,
"exclusions": "archive/pc/content,BonusContent,setup_redlauncher.exe,tools",
"linkextensions": (
# redscript, red4ext
"dll,exe"
# CET
",asi,lua,ini"
",sqlite3,json,keep,kark,lua,otf,ttf"
",toml,reds,redscrips,ts,bin,bk" # redscript + cybercmd
),
"exclusions": "archive/pc/content,setup_redlauncher.exe,tools",
"linkextensions": "*,^archive"
# (
# # # redscript, red4ext
# # "dll,exe"
# # # CET
# # ",asi,lua,ini"
# # ",sqlite3,json,keep,kark,lua,otf,ttf"
# # ",toml,reds,redscrips,ts,bin,bk" # redscript + cybercmd
# ),
}

_redmod_path = Path("tools/redmod/")
Expand Down

0 comments on commit b43557d

Please sign in to comment.