mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-17 13:11:42 +03:00
f2c6e1c682
Merge in DNS/adguard-home from fix-openapi to master Squashed commit of the following: commit bd95a502666372443b937cbcb690e307cd943342 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Jan 14 13:23:37 2021 +0300 openapi: fix more docs issues
19 lines
297 B
Bash
Executable File
19 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e -f -u
|
|
|
|
if [ "$(git diff --cached --name-only -- '*.js')" ]
|
|
then
|
|
make js-lint js-test
|
|
fi
|
|
|
|
if [ "$(git diff --cached --name-only -- '*.go' 'go.mod')" ]
|
|
then
|
|
make go-lint go-test
|
|
fi
|
|
|
|
if [ "$(git diff --cached --name-only -- './openapi/openapi.yaml')" ]
|
|
then
|
|
make openapi-lint
|
|
fi
|