fix: filepath sep on windows (#615)

This commit is contained in:
Hayden 2023-11-15 20:43:44 -06:00 committed by GitHub
parent c0e8e34065
commit b408318acb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ package migrations
import (
"embed"
"os"
"path/filepath"
"path"
)
//go:embed all:migrations
@ -28,12 +28,12 @@ func Write(temp string) error {
continue
}
b, err := Files.ReadFile(filepath.Join("migrations", f.Name()))
b, err := Files.ReadFile(path.Join("migrations", f.Name()))
if err != nil {
return err
}
err = os.WriteFile(filepath.Join(temp, f.Name()), b, 0o644)
err = os.WriteFile(path.Join(temp, f.Name()), b, 0o644)
if err != nil {
return err
}