Skip to content

Commit

Permalink
Update integrate-no-kprobe.py for typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mlm-games authored Sep 14, 2024
1 parent bc8b87d commit dd92ddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/integrate-no-kprobe.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def modify_ksu_config(defconfig, enable=True):
for directory in directories:
for filename in os.listdir(directory):
if filename.endswith("_defconfig"):
if os.path.exists(os.path.join(directory, filename))
if os.path.exists(os.path.join(directory, filename)):
defconfig_path = os.path.join(directory, filename)
break
if defconfig_path:
Expand Down

0 comments on commit dd92ddf

Please sign in to comment.