mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-28 18:06:20 +02:00
12 lines
275 B
Bash
Executable file
12 lines
275 B
Bash
Executable file
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
|
|
if [ "$(docker images -q neko_server 2> /dev/null)" == "" ]; then
|
|
echo "Image 'neko_server' not found. Run ./build first."
|
|
exit 1
|
|
fi
|
|
|
|
docker run -it --rm \
|
|
--entrypoint="go" \
|
|
-v "${PWD}/../:/src" \
|
|
neko_server fmt ./...
|