fix(files): fixed file promises when a file does not already exist
This commit is contained in:
parent
784ba6bc86
commit
8dca1ec3aa
2 changed files with 2 additions and 2 deletions
2
go.mod
2
go.mod
|
@ -1,3 +1,3 @@
|
|||
module git.adyxax.org/adyxax/gonf/v2
|
||||
|
||||
go 1.21.5
|
||||
go 1.22.0
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue