cli/pkg/cmd/extension/symlink_other.go
Mislav Marohnić bf9c49eccd Rename gh extensionsgh extension
This is for compatibility with other core commands which are all singular.
2021-08-11 22:22:39 +02:00

9 lines
141 B
Go

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