Skip to content

Commit

Permalink
修正
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Mar 4, 2024
1 parent 918af01 commit bd60140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def install_protobuf(version, source_dir, install_dir, platform: str):
extract(path, install_dir, "protobuf")
# なぜか実行属性が消えてるので入れてやる
for file in os.scandir(os.path.join(install_dir, "protobuf", "bin")):
if file.is_file:
if file.is_file():
os.chmod(file.path, file.stat().st_mode | stat.S_IXUSR)


Expand Down

0 comments on commit bd60140

Please sign in to comment.