Skip to content

Instantly share code, notes, and snippets.

@dketov
Last active November 23, 2020 11:04
Show Gist options
  • Save dketov/3a3bc0e7608cef293a2e94b507944bdd to your computer and use it in GitHub Desktop.
Save dketov/3a3bc0e7608cef293a2e94b507944bdd to your computer and use it in GitHub Desktop.
(
docker exec -i build \
find test-results \
-name "*.html" -print0
docker exec -i build \
find artifacts \
`for target in $TARGETS
do
echo -or -name "$target-*.ipk" -print0
done`
) |
docker exec -i build cpio -o0 |
(cd storage; cpio -i -d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment