summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-10-26 11:36:54 -0500
committerGitHub <noreply@github.com>2017-10-26 11:36:54 -0500
commit6f6005c617799e2f51071f43af718e5d4e77492b (patch)
tree0928b6705aa5db61d73845d28436e909d2b273a2 /scripts
parentab7e5b35d88dd0ae403c1f656fd72e9a3b46cdab (diff)
downloadchat-6f6005c617799e2f51071f43af718e5d4e77492b.tar.gz
chat-6f6005c617799e2f51071f43af718e5d4e77492b.tar.bz2
chat-6f6005c617799e2f51071f43af718e5d4e77492b.zip
Store mocks (#7724)
* store mocks * add example
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/license-check.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/license-check.sh b/scripts/license-check.sh
index be3b62508..8966551a0 100755
--- a/scripts/license-check.sh
+++ b/scripts/license-check.sh
@@ -5,7 +5,7 @@ count=0
for fileType in GoFiles; do
for file in `go list -f $'{{range .GoFiles}}{{$.Dir}}/{{.}}\n{{end}}' "$@"`; do
case $file in
- */utils/lru.go)
+ */utils/lru.go|*/store/storetest/mocks/*)
# Third-party, doesn't require a header.
;;
*)