From 85addd28f94eb7afb886976eef025e9130be0f02 Mon Sep 17 00:00:00 2001 From: nijayf Date: Mon, 3 Nov 2025 18:46:37 +0530 Subject: [PATCH] Release v2.15.1 changes --- service/mount.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/service/mount.go b/service/mount.go index 3093eee1..d7f2aa15 100644 --- a/service/mount.go +++ b/service/mount.go @@ -560,6 +560,7 @@ func mkfile(path string) (bool, error) { Log.WithField("path", path).Debug("created file") return true, nil } + return false, err } if st.IsDir() { return false, fmt.Errorf("existing path is a directory") @@ -583,6 +584,7 @@ func mkdir(path string) (bool, error) { Log.WithField("path", path).Debug("created directory") return true, nil } + return false, err } if !st.IsDir() { return false, fmt.Errorf("existing path is not a directory")