Skip to content

Commit 09e212b

Browse files
committed
fix: Properly pack VPKs
1 parent c27a05a commit 09e212b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_build/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def build_addon(addon_dir: str, output_dir_parent: str) -> None:
5757
vpk = vpkpp.VPK.create(os.path.join(output_dir, "pak01_dir.vpk"))
5858
for entry in to_pack:
5959
print(f"Packing \"{entry}\"")
60-
vpk.add_entry_from_file(entry, entry)
60+
vpk.add_entry_from_file(entry, addon_dir + entry)
6161
vpk.bake()
6262

6363
if (

0 commit comments

Comments
 (0)