Last active
November 23, 2020 11:04
-
-
Save dketov/3a3bc0e7608cef293a2e94b507944bdd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( | |
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