mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-10 15:35:51 +00:00
fix script_block file path by removing the script_block_id from the path (#3162)
This commit is contained in:
parent
976d636b3a
commit
ce60f2fbe1
1 changed files with 1 additions and 1 deletions
|
@ -502,7 +502,7 @@ async def create_script_block(
|
|||
# Step 4: Create script file for the block
|
||||
# Generate a unique filename for the block
|
||||
file_name = f"{block_name}.skyvern"
|
||||
file_path = f"blocks/{script_block.script_block_id}/{file_name}"
|
||||
file_path = f"blocks/{file_name}"
|
||||
|
||||
# Create artifact and upload to S3
|
||||
artifact_id = await app.ARTIFACT_MANAGER.create_script_file_artifact(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue