Discard changes to test.ts

pull/154/head
Muhammad Atif Ali 1 year ago committed by GitHub
parent 2a8dafe5ee
commit 640ce2879b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -34,7 +34,6 @@ export const runContainer = async (
export const executeScriptInContainer = async (
state: TerraformState,
image: string,
command: string = "",
shell: string = "sh",
): Promise<{
exitCode: number;
@ -43,9 +42,7 @@ export const executeScriptInContainer = async (
}> => {
const instance = findResourceInstance(state, "coder_script");
const id = await runContainer(image);
// const resp = await execContainer(id, [shell, "-c", instance.script]);
command = command + "; " + instance.script;
const resp = await execContainer(id, [shell, "-c", command]);
const resp = await execContainer(id, [shell, "-c", instance.script]);
const stdout = resp.stdout.trim().split("\n");
const stderr = resp.stderr.trim().split("\n");
return {

Loading…
Cancel
Save