neko/server/dev/lint
Miroslav Šedivý 68e23fa8e7 fix server dev.
2025-04-03 14:17:59 +02:00

14 lines
463 B
Bash
Executable file

#!/bin/bash
cd "$(dirname "$0")"
if [ "$(docker images -q neko_server:src 2> /dev/null)" == "" ]; then
echo "Image 'neko_server:src' not found. Run ./build first."
exit 1
fi
#
# build server
docker run --rm -it \
-v "${PWD}/../:/src" \
--entrypoint="/bin/bash" \
neko_server:src -c '[ -f ./bin/golangci-lint ] || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.31.0;./bin/golangci-lint run';