Skip to content

Commit

Permalink
fix menuconfig in msys2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiu-xiao committed Apr 18, 2024
1 parent d7124a3 commit d77ddc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/python/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ def __init__(self):

def guiconfig(self, path):
print("Start menu config.")
os.system("cd " + path + " && " + self.kconfig_path + "/guiconfig.py")
os.system("cd " + path + " && python3 " + self.kconfig_path + "/guiconfig.py")
print("Menu config done.")

def menuconfig(self, path):
print("Start menu config.")
os.system("cd " + path + " && " + self.kconfig_path + "/menuconfig.py")
os.system("cd " + path + " && python3 " + self.kconfig_path + "/menuconfig.py")
print("Menu config done.")

def clean_cache(self):
Expand Down

0 comments on commit d77ddc4

Please sign in to comment.