main: find, print and exec
This commit is contained in:
parent
4bf213cfe4
commit
b367c08be4
1 changed files with 6 additions and 1 deletions
7
main.js
7
main.js
|
@ -87,7 +87,12 @@ async function main() {
|
|||
await exec.exec("docker", [
|
||||
"exec",
|
||||
container,
|
||||
"find", "..", "-type", "f", "-exec", "cp", "{}", ".", ";"
|
||||
"find",
|
||||
"..",
|
||||
"-maxdepth", "1",
|
||||
"-type", "f",
|
||||
"-print",
|
||||
"-exec", "cp", "{}", ".", ";"
|
||||
])
|
||||
core.endGroup()
|
||||
} catch (error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue