diff options
-rw-r--r-- | .github/workflows/mac-build.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 6d3c3ab..d57a62f 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -117,14 +117,12 @@ jobs: if [ $USE_XVFB == true ]; then function runXvfb { PATH=$PATH:/opt/X11/bin - Xvfb $1 -nolisten unix & + Xvfb $1 & XVFB_PID=$! echo Launched Xvfb $1 as process $XVFB_PID >&2 trap "echo killing process $XVFB_PID... >&2; kill $XVFB_PID" 0 export DISPLAY=$1 sleep 2 - ls -lsa /tmp/.X* - cat /var/log/Xorg.0.log } else function runXvfb { |