2022-07-23 17:15:13 +02:00

20 lines
433 B
JavaScript

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