mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2025-01-09 02:20:18 +01:00
10 lines
460 B
Text
10 lines
460 B
Text
|
#!/usr/bin/env bash
|
||
|
set -eu
|
||
|
|
||
|
echo "pre_build"
|
||
|
source hooks/.config
|
||
|
|
||
|
echo "Register qemu-*-static for all supported processors except current"
|
||
|
echo "⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯"
|
||
|
|
||
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|