fix(files): fixed file promises when a file does not already exist

This commit is contained in:
Julien Dessaux 2024-02-26 23:20:56 +01:00
parent 784ba6bc86
commit 8dca1ec3aa
Signed by: adyxax
GPG key ID: F92E51B86E07177E
2 changed files with 2 additions and 2 deletions

2
go.mod
View file

@ -1,3 +1,3 @@
module git.adyxax.org/adyxax/gonf/v2
go 1.21.5
go 1.22.0

View file

@ -71,7 +71,7 @@ func (f *FilePromise) Resolve() {
var sumFile []byte
sumFile, f.err = sha256sumOfFile(filename)
if f.err != nil {
if errors.Is(f.err, fs.ErrNotExist) {
if !errors.Is(f.err, fs.ErrNotExist) {
slog.Error("file", "filename", f.filename, "status", f.status, "error", f.err)
f.status = BROKEN
return