1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-07-14 09:44:16 +02:00

Merge branch 'master' into develop

This commit is contained in:
Gani Georgiev
2023-05-29 17:01:16 +03:00

View File

@ -188,7 +188,7 @@ func (p *plugin) update(withBackup bool) error {
// try again with an .exe extension // try again with an .exe extension
newExec = newExec + ".exe" newExec = newExec + ".exe"
if _, fallbackErr := os.Stat(newExec); fallbackErr != nil { if _, fallbackErr := os.Stat(newExec); fallbackErr != nil {
return fmt.Errorf("The executable in the extracted path is missing or it is inaccessible: %w, %w", err, fallbackErr) return fmt.Errorf("The executable in the extracted path is missing or it is inaccessible: %v, %v", err, fallbackErr)
} }
} }