chore: bun fmt

This commit is contained in:
35C4n0r 2026-04-17 19:43:31 +05:30
parent 4d1814a191
commit b9d352e1ad
No known key found for this signature in database
GPG Key ID: 5B71E5C9D18D5675

View File

@ -75,7 +75,11 @@ const setup = async (props?: SetupProps): Promise<{ id: string }> => {
// Write the test start script directly to the module scripts dir, // Write the test start script directly to the module scripts dir,
// since start_script is no longer a Terraform variable. // since start_script is no longer a Terraform variable.
const startScript = await loadTestFile(import.meta.dir, "agentapi-start.sh"); const startScript = await loadTestFile(import.meta.dir, "agentapi-start.sh");
await execContainer(id, ["bash", "-c", `mkdir -p /home/coder/${moduleDirName}/scripts`]); await execContainer(id, [
"bash",
"-c",
`mkdir -p /home/coder/${moduleDirName}/scripts`,
]);
await writeExecutable({ await writeExecutable({
containerId: id, containerId: id,
filePath: `/home/coder/${moduleDirName}/scripts/agentapi-start.sh`, filePath: `/home/coder/${moduleDirName}/scripts/agentapi-start.sh`,