This commit is contained in:
Alex Yatskov 2015-07-02 17:54:49 +09:00
parent 57cee5f1e2
commit e603433876

View File

@ -123,6 +123,15 @@ func main() {
} }
if flag.NArg() == 2 { if flag.NArg() == 2 {
srcDirAbs := makeAbsPath(flag.Arg(1))
dstDirAbs := makeAbsPath(*dstDir)
confDirAbs := makeAbsPath(flag.Arg(0))
os.Setenv("HM_CONFIG", confDirAbs)
os.Setenv("HM_TASK", *taskName)
os.Setenv("HM_SRC", srcDirAbs)
os.Setenv("HM_DEST", dstDirAbs)
conf, err := parse(flag.Arg(0)) conf, err := parse(flag.Arg(0))
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)