We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 233aaad + 7673fd1 commit f6cb4dfCopy full SHA for f6cb4df
app/main.py
@@ -1083,9 +1083,10 @@ async def perform_upgrade():
1083
1084
# 3. Run build_client.sh
1085
try:
1086
- script_path = "build/build_client.py"
1087
- #script_path = path_manager.get_str_path(script_path)
1088
- subprocess.run(["python", script_path], check=True)
+ # script_path = "build/build_client.py"
+ # #script_path = path_manager.get_str_path(script_path)
+ # subprocess.run(["python", script_path], check=True)
1089
+ subprocess.run(["bash build/shell_scripts/build_client.sh"], shell=True, check=True)
1090
frontend_rebuilt = True
1091
messages.append("Frontend rebuilt successfully")
1092
except subprocess.CalledProcessError as e:
0 commit comments