export function exportContainerCmd()

in src/constants.ts [85:101]


export function exportContainerCmd(moduleDir: string, containerCommand: string): string {
    const containerScript =
`#!/bin/bash

echo "Copying terraform project..."
cp -a /module/${moduleDir}/. /tf-test/module/

echo "Initializing environment..."
mkdir /root/.azure
cp /module/${moduleDir}/.TFTesting/.azure/*.json /root/.azure

echo "Starting to Run test task..."
${containerCommand}
echo "Container test operation completed - read the logs for status"`;

    return containerScript;
}