main: find, print and exec

This commit is contained in:
Dawid Dziurla 2020-03-26 12:07:14 +01:00
parent 4bf213cfe4
commit b367c08be4
No known key found for this signature in database
GPG key ID: 7B6D8368172E9B0B

View file

@ -87,7 +87,12 @@ async function main() {
await exec.exec("docker", [ await exec.exec("docker", [
"exec", "exec",
container, container,
"find", "..", "-type", "f", "-exec", "cp", "{}", ".", ";" "find",
"..",
"-maxdepth", "1",
"-type", "f",
"-print",
"-exec", "cp", "{}", ".", ";"
]) ])
core.endGroup() core.endGroup()
} catch (error) { } catch (error) {