8 lines
287 B
Bash
Executable file
8 lines
287 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 \
|
|
--privileged --user root quay.io/podman/stable /stargazing/build-all \
|
|
|| { e=$?; echo absurdism died; exit $e ;} \
|
|
;
|