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.
1 parent 8f1ab31 commit 36114faCopy full SHA for 36114fa
app/main.py
@@ -1328,7 +1328,10 @@ async def perform_upgrade():
1328
1329
# 3. Run build_client.sh
1330
try:
1331
- subprocess.run(["python", "build/build_client.py"], check=True)
+ script_path = "build/build_client.py"
1332
+ if os.getenv("IS_COMPOSABLE"):
1333
+ script_path = os.path.join('synthetic-data-studio', script_path)
1334
+ subprocess.run(["python", script_path], check=True)
1335
frontend_rebuilt = True
1336
messages.append("Frontend rebuilt successfully")
1337
except subprocess.CalledProcessError as e:
0 commit comments