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:
Nalin Dahyabhai 2022-07-21 17:29:11 -04:00
parent 62954c89c0
commit 79bc4a3888
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ gopath:
test $(shell pwd) = $(shell cd ../../../../src/github.com/containers/buildah ; pwd)
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
validate: install.tools

View File

@ -12,7 +12,7 @@ load helpers
_prefetch quay.io/libpod/alpine
run ${TUTORIAL_BINARY}
buildoutput="$output"
# should'nt have the "root" scope in our cgroups
# shouldn't have the "root" scope in our cgroups
echo "build output:"
echo "${output}"
! grep -q init.scope <<< "$buildoutput"