minecraft-pi-reborn/debian/client/virgl/usr/lib/minecraft-pi/run.sh

18 lines
250 B
Bash
Raw Normal View History

2020-10-16 19:39:04 +00:00
#!/bin/sh
set -e
# Start VirGL
virgl_test_server > /tmp/minecraft-pi/virgl.log 2>&1 &
VIRGL_PID=$!
2020-10-16 19:39:04 +00:00
# Launch Minecraft
set +e
2021-01-31 02:32:20 +00:00
docker-compose -f "${DOCKER_COMPOSE_YML}" run --rm minecraft-pi
RET=$?
set -e
2020-10-16 19:39:04 +00:00
# Kill VirGL
kill ${VIRGL_PID}
2020-10-16 19:39:04 +00:00
exit ${RET}