Don't bother telling codespell to skip files that don't exist
The Makefile was telling codespell to skip files that have been moved around or renamed. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
This commit is contained in:
parent
62954c89c0
commit
79bc4a3888
2
Makefile
2
Makefile
|
@ -111,7 +111,7 @@ gopath:
|
||||||
test $(shell pwd) = $(shell cd ../../../../src/github.com/containers/buildah ; pwd)
|
test $(shell pwd) = $(shell cd ../../../../src/github.com/containers/buildah ; pwd)
|
||||||
|
|
||||||
codespell:
|
codespell:
|
||||||
codespell -S Makefile,build,buildah,buildah.spec,imgtype,copy,AUTHORS,bin,vendor,.git,go.sum,CHANGELOG.md,changelog.txt,seccomp.json,.cirrus.yml,"*.xz,*.gz,*.tar,*.tgz,*ico,*.png,*.1,*.5,*.orig,*.rej" -L uint,iff,od,ERRO -w
|
codespell -S Makefile,buildah.spec.rpkg,AUTHORS,bin,vendor,.git,go.mod,go.sum,CHANGELOG.md,changelog.txt,seccomp.json,.cirrus.yml,"*.xz,*.gz,*.tar,*.tgz,*ico,*.png,*.1,*.5,*.orig,*.rej" -L uint,iff,od,ERRO -w
|
||||||
|
|
||||||
.PHONY: validate
|
.PHONY: validate
|
||||||
validate: install.tools
|
validate: install.tools
|
||||||
|
|
|
@ -12,7 +12,7 @@ load helpers
|
||||||
_prefetch quay.io/libpod/alpine
|
_prefetch quay.io/libpod/alpine
|
||||||
run ${TUTORIAL_BINARY}
|
run ${TUTORIAL_BINARY}
|
||||||
buildoutput="$output"
|
buildoutput="$output"
|
||||||
# should'nt have the "root" scope in our cgroups
|
# shouldn't have the "root" scope in our cgroups
|
||||||
echo "build output:"
|
echo "build output:"
|
||||||
echo "${output}"
|
echo "${output}"
|
||||||
! grep -q init.scope <<< "$buildoutput"
|
! grep -q init.scope <<< "$buildoutput"
|
||||||
|
|
Loading…
Reference in New Issue