summaryrefslogtreecommitdiff
path: root/pkg/archive/path_unix.go
blob: 0b135aea75d970906c9d06737903301bb335cb67 (plain)
1
2
3
4
5
6
7
8
9
10
//go:build !windows
// +build !windows

package archive

// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation
// of CheckSystemDriveAndRemoveDriveLetter
func checkSystemDriveAndRemoveDriveLetter(path string) (string, error) {
	return path, nil
}