Fix Typos
minecraft-pi-docker/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-10-15 22:24:46 -04:00
parent b474564647
commit c513426e05
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ VIRGL_PID="$!"
# Ensure Groups Are Correct # Ensure Groups Are Correct
if [ -z "${MCPI_SUBSHELL}" ]; then if [ -z "${MCPI_SUBSHELL}" ]; then
if ! id -Gn "$(whoami)" | grep '\bdocker\b' > /dev/null; then if ! id -Gn "$(whoami)" | grep '\bdocker\b' > /dev/null; then
pkexec usermod -aG "$(whoami)" docker pkexec usermod -aG docker "$(whoami)"
fi fi
exec sg docker "env MCPI_SUBSHELL=1 \"$(realpath -e "$0")\"" exec sg docker "env MCPI_SUBSHELL=1 \"$(realpath -e "$0")\""
fi fi
@ -34,4 +34,4 @@ RET="$?"
# Kill VirGL # Kill VirGL
kill "${VIRGL_PID}" kill "${VIRGL_PID}"
ecit "${RET}" exit "${RET}"

View File

@ -466,7 +466,7 @@ HOOK(eglTerminate, EGLBoolean, (__attribute__((unused)) EGLDisplay display)) {
// Use VirGL // Use VirGL
__attribute__((constructor)) static void init() { __attribute__((constructor)) static void init() {
is_server = extra_get_is_server(); is_server = extra_get_is_server();
setenv("LIBGL_ALWAYS_SOFTWARE", "1", 1); setenv("LIBGL_ALWAYS_SOFTWARE", "1", 1);
if (!is_server) { if (!is_server) {
setenv("GALLIUM_DRIVER", "virpipe", 1); setenv("GALLIUM_DRIVER", "virpipe", 1);
} }