appendFileContent method

Future<bool> appendFileContent(
  1. String filePath,
  2. String content, {
  3. bool sudo = false,
})

Append to the file filePath with content, inside this container.

Implementation

Future<bool> appendFileContent(String filePath, String content,
        {bool sudo = false}) async =>
    DockerCMD.appendFileContent(runner.dockerHost, name, filePath, content,
        sudo: sudo);