mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
13 lines
287 B
Bash
Executable File
13 lines
287 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This runs a single test case from the host (not from Docker itself). The
|
|
# arguments are the same as run.sh but this wraps it in docker.
|
|
|
|
docker run \
|
|
--init \
|
|
--rm \
|
|
-v $(pwd):/src \
|
|
--entrypoint "xvfb-run" \
|
|
$(docker build -q .) \
|
|
/entrypoint.sh $@
|