mirror of
https://github.com/samuelncui/yatm.git
synced 2026-04-14 20:57:48 +00:00
8 lines
153 B
Bash
Executable File
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"
|