-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
77 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//go:build !windows | ||
|
||
package installer | ||
|
||
import ( | ||
"errors" | ||
"syscall" | ||
) | ||
|
||
func crossDevice(err error) bool { | ||
var sysErr syscall.Errno | ||
if errors.As(err, &sysErr) { | ||
return err == syscall.EXDEV | ||
} | ||
return false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//go:build windows | ||
|
||
package installer | ||
|
||
import ( | ||
"errors" | ||
"syscall" | ||
) | ||
|
||
func crossDevice(err error) bool { | ||
var sysErr syscall.Errno | ||
if errors.As(err, &sysErr) { | ||
return err == syscall.EXDEV || err == syscall.ERROR_NOT_SAME_DEVICE | ||
Check failure on line 13 in rename_windows.go GitHub Actions / release
Check failure on line 13 in rename_windows.go GitHub Actions / release
Check failure on line 13 in rename_windows.go GitHub Actions / release
|
||
} | ||
return false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters