Skip to content

Commit

Permalink
fix: isAir and isDirectlyRun in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
devhaozi committed Oct 10, 2024
1 parent a44ca69 commit 9a6adcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions foundation/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func isTesting() bool {
// isAir checks if the application is running using Air.
func isAir() bool {
for _, arg := range os.Args {
if strings.Contains(arg, "/storage/temp") {
if strings.Contains(filepath.ToSlash(arg), "/storage/temp") {

Check warning on line 38 in foundation/path.go

View check run for this annotation

Codecov / codecov/patch

foundation/path.go#L38

Added line #L38 was not covered by tests
return true
}
}
Expand All @@ -47,5 +47,5 @@ func isAir() bool {
func isDirectlyRun() bool {
executable, _ := os.Executable()
return strings.Contains(filepath.Base(executable), os.TempDir()) ||
(strings.Contains(executable, "/var/folders") && strings.Contains(executable, "/T/go-build")) // macOS
(strings.Contains(filepath.ToSlash(executable), "/var/folders") && strings.Contains(filepath.ToSlash(executable), "/T/go-build")) // macOS

Check warning on line 50 in foundation/path.go

View check run for this annotation

Codecov / codecov/patch

foundation/path.go#L50

Added line #L50 was not covered by tests
}

0 comments on commit 9a6adcc

Please sign in to comment.