From 79bc4a3888de4cf88c158c0a012594dfcc2a3276 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Thu, 21 Jul 2022 17:29:11 -0400 Subject: [PATCH] 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 --- Makefile | 2 +- tests/tutorial.bats | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a41c01d25..7b0a032d0 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/tests/tutorial.bats b/tests/tutorial.bats index 0f601d916..352ca4e19 100644 --- a/tests/tutorial.bats +++ b/tests/tutorial.bats @@ -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"