import { $ } from 'zx'; /** * Create a tmp directory using `mktemp` command and return the result * * @return {Promise} */ export async function createTmpDir() { return (await $`mktemp -d`).toString().replace('\n', ''); } /** * Copy the source file to the target directory * * @return {Promise} */ export async function copy(sourceFile, targetDirectory) { return $`cp ${sourceFile} ${targetDirectory}`; }