mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.7 KiB
79 lines
1.7 KiB
// Copyright (c) 2013 GPMGo Members. All rights reserved. |
|
// Use of this source code is governed by a MIT-style |
|
// license that can be found in the LICENSE file. |
|
|
|
package cmd |
|
|
|
import ( |
|
"fmt" |
|
"os" |
|
|
|
"github.com/GPMGo/gopm/utils" |
|
) |
|
|
|
var CmdBuild = &Command{ |
|
UsageLine: "build [build flags] [packages]", |
|
} |
|
|
|
func init() { |
|
CmdBuild.Run = runBuild |
|
CmdBuild.Flags = map[string]bool{ |
|
"-v": false, |
|
"-r": false, |
|
} |
|
} |
|
|
|
// printBuildPrompt prints prompt information to users to |
|
// let them know what's going on. |
|
func printBuildPrompt(flag string) { |
|
switch flag { |
|
|
|
} |
|
} |
|
|
|
func runBuild(cmd *Command, args []string) { |
|
// Check flags. |
|
num := checkFlags(cmd.Flags, Config.AutoEnable.Build, args, printBuildPrompt) |
|
if num == -1 { |
|
return |
|
} |
|
args = args[num:] |
|
|
|
var cmdArgs []string |
|
cmdArgs = append(cmdArgs, "install") |
|
if CmdBuild.Flags["-v"] { |
|
cmdArgs = append(cmdArgs, "-v") |
|
} |
|
|
|
executeCommand("go", cmdArgs) |
|
|
|
// Find executable in GOPATH and copy to current directory. |
|
wd, _ := os.Getwd() |
|
proName := utils.GetExecuteName(wd) |
|
paths := utils.GetGOPATH() |
|
|
|
for _, v := range paths { |
|
if utils.IsExist(v + "/bin/" + proName) { |
|
if utils.IsExist(wd + "/" + proName) { |
|
err := os.Remove(wd + "/" + proName) |
|
if err != nil { |
|
utils.ColorPrint(fmt.Sprintf(fmt.Sprintf("[ERROR] %s\n", PromptMsg["RemoveFile"]), err)) |
|
return |
|
} |
|
} |
|
err := os.Rename(v+"/bin/"+proName, wd+"/"+proName) |
|
if err == nil { |
|
utils.ColorPrint(fmt.Sprintf(fmt.Sprintf("<SUCCESS>$ %s\n", PromptMsg["MovedFile"]), v, wd)) |
|
// Check if need to run program. |
|
if CmdBuild.Flags["-r"] { |
|
cmdArgs = make([]string, 0) |
|
executeCommand(proName, cmdArgs) |
|
} |
|
return |
|
} |
|
|
|
fmt.Printf(fmt.Sprintf("%s\n", PromptMsg["MoveFile"]), v, wd) |
|
break |
|
} |
|
} |
|
}
|
|
|