cli/pkg/cmd/extension/symlink_other.go
Babak K. Shandiz 05986e4cb3
chore: apply go fix to remove deprecated // +build tags
Signed-off-by: Babak K. Shandiz <babakks@github.com>
2025-10-30 21:10:45 +00:00

9 lines
142 B
Go

//go:build !windows
package extension
import "os"
func makeSymlink(oldname, newname string) error {
return os.Symlink(oldname, newname)
}