Files
yatm/build_linux.sh
Samuel N Cui f87ec06af6 feat: useable
2022-12-12 22:48:28 +08:00

8 lines
153 B
Bash
Executable File

#!/usr/bin/env bash
set -e;
CURDIR=$(cd $(dirname $0); pwd);
cd ${CURDIR};
docker run --rm -v $(pwd):/app golang:1.19 sh -c "cd /app && bash build.sh"