1 Star 1 Fork 1

U语言组织 / U语言

forked from 秋来冬风 / U语言 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
init_unix.go 395 Bytes
一键复制 编辑 原始数据 按行查看 历史
//go:build unix
package cmd
import (
"fmt"
"os/exec"
)
var Ext = ""
// InitLink 初始化链接目录
func InitLink() error {
cmd := exec.Command("ln", "-s", "-n", u_env_var.U_Complier_Link, u_env_var.U_Complier_Sdk)
buf, err := cmd.CombinedOutput()
fmt.Println(string(buf))
if err != nil {
return fmt.Errorf("创建目录符号链接失败 错误信息:%w", err)
}
return nil
}
Go
1
https://gitee.com/u-language/u-language.git
git@gitee.com:u-language/u-language.git
u-language
u-language
U语言
a214d6007862

搜索帮助

53164aa7 5694891 3bd8fe86 5694891