chezmoi: update to 2.31.1.

This commit is contained in:
mhmdanas 2023-03-03 20:56:20 +00:00 committed by classabbyamp
parent ca97e0b12b
commit 51a79c968d

View file

@ -1,6 +1,6 @@
# Template file for 'chezmoi' # Template file for 'chezmoi'
pkgname=chezmoi pkgname=chezmoi
version=2.31.0 version=2.31.1
revision=1 revision=1
build_style=go build_style=go
go_import_path="github.com/twpayne/chezmoi/v2" go_import_path="github.com/twpayne/chezmoi/v2"
@ -12,7 +12,7 @@ maintainer="classabbyamp <void@placeviolette.net>"
license="MIT" license="MIT"
homepage="https://chezmoi.io/" homepage="https://chezmoi.io/"
distfiles="https://github.com/twpayne/chezmoi/archive/v${version}.tar.gz" distfiles="https://github.com/twpayne/chezmoi/archive/v${version}.tar.gz"
checksum=00e7e783172ec827f2f97dd0629d34c7e20ad949720609b406319ba75e2ccf35 checksum=47ab2cf78a749a070f9b86b7518b8fe9cfb1dc46c31229f76ebdadad74abd235
pre_build() { pre_build() {
local _date local _date
@ -22,6 +22,12 @@ pre_build() {
fi fi
} }
pre_check() {
# These tests fail with a "git: 'submodule' is not a git command."
# error because chroot-git does not include that subcommand.
rm pkg/cmd/testdata/scripts/{init,issue1213,issue2649,root,update}.txtar
}
do_check() { do_check() {
make test make test
} }