mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-11 18:54:31 +00:00
Changed build to print a warning if import-path build failed.
This commit is contained in:
@@ -89,7 +89,12 @@ func parseRunArgs(args []string) *RunArgs {
|
|||||||
// 1. revel run [import-path]
|
// 1. revel run [import-path]
|
||||||
// 2. revel run [port]
|
// 2. revel run [port]
|
||||||
// 3. revel run [run-mode]
|
// 3. revel run [run-mode]
|
||||||
if _, err := build.Import(args[0], "", build.FindOnly); err == nil {
|
_, err := build.Import(args[0], "", build.FindOnly);
|
||||||
|
if err!=nil {
|
||||||
|
revel.WARN.Printf("Unable to run using an import path, assuming import path is working directory %s %s",args[0],err.Error())
|
||||||
|
}
|
||||||
|
println("Trying to build with",args[0], err)
|
||||||
|
if err == nil {
|
||||||
// 1st arg is the import path
|
// 1st arg is the import path
|
||||||
inputArgs.ImportPath = args[0]
|
inputArgs.ImportPath = args[0]
|
||||||
} else if port, err := strconv.Atoi(args[0]); err == nil {
|
} else if port, err := strconv.Atoi(args[0]); err == nil {
|
||||||
|
|||||||
Reference in New Issue
Block a user