8 lines
265 B
Bash
Executable file
8 lines
265 B
Bash
Executable file
#!/usr/bin/env sh
|
|
: \
|
|
&& [ -s build-all ] \
|
|
&& { [ ! -d out ] || mkdir out || exit ;} \
|
|
&& podman run -v="$(readlink -f .)":/stargazing -e=TERM=$TERM -it --rm \
|
|
--security-opt label=disable --user podman quay.io/podman/stable \
|
|
/stargazing/build-all \
|
|
;
|