Skip to content

Commit

Permalink
build-sys: Run gofmt -d in 'make check'
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Berger <stefan@linux.ibm.com>
  • Loading branch information
stefanberger authored and lumjjb committed Oct 21, 2020
1 parent 3723f9c commit 71a8421
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ bin/ctr-enc: cmd/ctr FORCE
check:
@echo "$@"
@golangci-lint run
@script/check_format.sh

install:
@echo "$@"
Expand Down
23 changes: 23 additions & 0 deletions script/check_format.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env bash

# Copyright The containerd Authors.

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

# http://www.apache.org/licenses/LICENSE-2.0

# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

out=$(gofmt -d ./cmd ./images)
[ $? -ne 0 ] && exit 1
if [ "$out" != "" ]; then
echo "$out"
exit 1
fi
exit 0

0 comments on commit 71a8421

Please sign in to comment.