base-runtime/tests/resources/hello-world/hello.sh
2017-04-27 14:44:57 +02:00

7 lines
139 B
Bash
Executable file

#!/bin/bash
set -e # exit immediately on any failure
microdnf install tar make gcc 1>&2
cd /mnt
tar xzvf hello.tgz 1>&2
make 1>&2
./hello