mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-15 09:56:26 -04:00
11 lines
147 B
Bash
Executable file
11 lines
147 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
if [ "$CROSS" != 1 ]; then
|
|
exit 111
|
|
fi
|
|
|
|
docker run --rm -v /home/runner:/home/runner -w "$PWD" "$CROSS_IMAGE" "$@"
|