Skip to content

Commit 8391c1c

Browse files
committed
Update paths to use src directory
1 parent 934b0d3 commit 8391c1c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/update_protobufs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def fix_protobufs():
8282

8383
def compile_protobufs():
8484
source_protobufs_directory = os.path.join(
85-
"steam", "utils", "protobuf_manager", "protobufs")
85+
"src", "steam", "utils", "protobuf_manager", "protobufs")
8686

8787
if os.path.exists(source_protobufs_directory):
8888
shutil.rmtree(source_protobufs_directory)
@@ -105,7 +105,7 @@ def compile_protobufs():
105105

106106
def generate_emsg_enum():
107107
input_file = os.path.join("protobufs", "enums_clientserver.proto")
108-
output_file = os.path.join("steam", "enums", "emsg.py")
108+
output_file = os.path.join("src", "steam", "enums", "emsg.py")
109109

110110
if not os.path.exists(input_file):
111111
logging.warning(f"{input_file} not found. Skipping EMsg generation.")

0 commit comments

Comments
 (0)