2014-12-05 11:59:56 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"os"
|
2015-09-02 11:00:14 -04:00
|
|
|
"os/exec"
|
2014-12-05 11:59:56 -05:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2015-08-29 12:46:05 -04:00
|
|
|
"text/template"
|
2014-12-05 11:59:56 -05:00
|
|
|
"time"
|
|
|
|
|
2015-08-29 17:58:48 -04:00
|
|
|
"github.com/eknkc/amber"
|
2014-12-05 11:59:56 -05:00
|
|
|
"github.com/russross/blackfriday"
|
2015-08-29 11:47:16 -04:00
|
|
|
"github.com/yosssi/gcss"
|
2015-09-02 13:35:26 -04:00
|
|
|
"gopkg.in/yaml.v2"
|
2014-12-05 11:59:56 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ZSDIR = ".zs"
|
|
|
|
PUBDIR = ".pub"
|
|
|
|
)
|
|
|
|
|
2015-08-29 11:47:16 -04:00
|
|
|
type Vars map[string]string
|
2015-09-02 11:00:14 -04:00
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// renameExt renames extension (if any) from oldext to newext
|
|
|
|
// If oldext is an empty string - extension is extracted automatically.
|
|
|
|
// If path has no extension - new extension is appended
|
|
|
|
func renameExt(path, oldext, newext string) string {
|
|
|
|
if oldext == "" {
|
|
|
|
oldext = filepath.Ext(path)
|
|
|
|
}
|
|
|
|
if oldext == "" || strings.HasSuffix(path, oldext) {
|
|
|
|
return strings.TrimSuffix(path, oldext) + newext
|
2015-09-02 11:00:14 -04:00
|
|
|
} else {
|
|
|
|
return path
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// globals returns list of global OS environment variables that start
|
|
|
|
// with ZS_ prefix as Vars, so the values can be used inside templates
|
2015-09-02 11:00:14 -04:00
|
|
|
func globals() Vars {
|
|
|
|
vars := Vars{}
|
|
|
|
for _, e := range os.Environ() {
|
|
|
|
pair := strings.Split(e, "=")
|
|
|
|
if strings.HasPrefix(pair[0], "ZS_") {
|
|
|
|
vars[strings.ToLower(pair[0][3:])] = pair[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return vars
|
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// run executes a command or a script. Vars define the command environment,
|
|
|
|
// each zs var is converted into OS environemnt variable with ZS_ prefix
|
|
|
|
// prepended. Additional variable $ZS contains path to the zs binary. Command
|
|
|
|
// stderr is printed to zs stderr, command output is returned as a string.
|
|
|
|
func run(vars Vars, cmd string, args ...string) (string, error) {
|
|
|
|
// First check if partial exists (.amber or .html)
|
|
|
|
if b, err := ioutil.ReadFile(filepath.Join(ZSDIR, cmd+".amber")); err == nil {
|
|
|
|
return string(b), nil
|
|
|
|
}
|
|
|
|
if b, err := ioutil.ReadFile(filepath.Join(ZSDIR, cmd+".html")); err == nil {
|
|
|
|
return string(b), nil
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
var errbuf, outbuf bytes.Buffer
|
2015-09-02 11:00:14 -04:00
|
|
|
c := exec.Command(cmd, args...)
|
2015-09-02 13:05:09 -04:00
|
|
|
env := []string{"ZS=" + os.Args[0], "ZS_OUTDIR=" + PUBDIR}
|
|
|
|
env = append(env, os.Environ()...)
|
|
|
|
for k, v := range vars {
|
|
|
|
env = append(env, "ZS_"+strings.ToUpper(k)+"="+v)
|
|
|
|
}
|
|
|
|
c.Env = env
|
|
|
|
c.Stdout = &outbuf
|
2015-09-02 11:00:14 -04:00
|
|
|
c.Stderr = &errbuf
|
|
|
|
|
|
|
|
err := c.Run()
|
|
|
|
|
|
|
|
if errbuf.Len() > 0 {
|
|
|
|
log.Println("ERROR:", errbuf.String())
|
|
|
|
}
|
|
|
|
if err != nil {
|
2015-09-02 13:05:09 -04:00
|
|
|
return "", err
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
return string(outbuf.Bytes()), nil
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
2014-12-05 11:59:56 -05:00
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// getVars returns list of variables defined in a text file and actual file
|
|
|
|
// content following the variables declaration. Header is separated from
|
|
|
|
// content by an empty line. Header can be either YAML or JSON.
|
|
|
|
// If no empty newline is found - file is treated as content-only.
|
|
|
|
func getVars(path string, globals Vars) (Vars, string, error) {
|
2015-08-29 11:47:16 -04:00
|
|
|
b, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, "", err
|
|
|
|
}
|
|
|
|
s := string(b)
|
2015-09-02 13:05:09 -04:00
|
|
|
|
2015-09-02 13:43:31 -04:00
|
|
|
// Pick some default values for content-dependent variables
|
2015-09-02 13:05:09 -04:00
|
|
|
v := Vars{}
|
2015-09-02 13:43:31 -04:00
|
|
|
title := strings.Replace(strings.Replace(path, "_", " ", -1), "-", " ", -1)
|
|
|
|
v["title"] = strings.ToTitle(title)
|
|
|
|
v["description"] = ""
|
|
|
|
|
|
|
|
// Copy globals (will override title and description for markdown layouts
|
2015-08-30 10:01:05 -04:00
|
|
|
for name, value := range globals {
|
|
|
|
v[name] = value
|
2014-12-05 13:26:15 -05:00
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
|
2015-09-02 13:43:31 -04:00
|
|
|
// Add default values extracted from file name/path
|
2015-08-29 17:43:59 -04:00
|
|
|
if _, err := os.Stat(filepath.Join(ZSDIR, "layout.amber")); err == nil {
|
|
|
|
v["layout"] = "layout.amber"
|
|
|
|
} else {
|
|
|
|
v["layout"] = "layout.html"
|
|
|
|
}
|
2015-08-30 10:01:05 -04:00
|
|
|
v["file"] = path
|
2015-09-02 13:05:09 -04:00
|
|
|
v["url"] = path[:len(path)-len(filepath.Ext(path))] + ".html"
|
|
|
|
v["output"] = filepath.Join(PUBDIR, v["url"])
|
2015-08-29 17:43:59 -04:00
|
|
|
|
2015-09-02 13:35:26 -04:00
|
|
|
delim := "\n---\n"
|
|
|
|
if sep := strings.Index(s, delim); sep == -1 {
|
2015-08-29 13:54:55 -04:00
|
|
|
return v, s, nil
|
2015-09-02 13:05:09 -04:00
|
|
|
} else {
|
|
|
|
header := s[:sep]
|
2015-09-02 13:35:26 -04:00
|
|
|
body := s[sep+len(delim):]
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
vars := Vars{}
|
|
|
|
if err := yaml.Unmarshal([]byte(header), &vars); err != nil {
|
|
|
|
fmt.Println("ERROR: failed to parse header", err)
|
2015-09-02 13:35:26 -04:00
|
|
|
return nil, "", err
|
2015-09-02 13:05:09 -04:00
|
|
|
} else {
|
|
|
|
for key, value := range vars {
|
|
|
|
v[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(v["url"], "./") {
|
|
|
|
v["url"] = v["url"][2:]
|
|
|
|
}
|
|
|
|
return v, body, nil
|
2014-12-05 12:09:10 -05:00
|
|
|
}
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// Render expanding zs plugins and variables
|
2015-09-02 11:00:14 -04:00
|
|
|
func render(s string, vars Vars) (string, error) {
|
2015-09-02 13:05:09 -04:00
|
|
|
delim_open := "{{"
|
|
|
|
delim_close := "}}"
|
|
|
|
|
2015-08-29 12:46:05 -04:00
|
|
|
out := &bytes.Buffer{}
|
2015-09-02 13:05:09 -04:00
|
|
|
for {
|
|
|
|
if from := strings.Index(s, delim_open); from == -1 {
|
|
|
|
out.WriteString(s)
|
|
|
|
return out.String(), nil
|
|
|
|
} else {
|
|
|
|
if to := strings.Index(s, delim_close); to == -1 {
|
|
|
|
return "", fmt.Errorf("Close delim not found")
|
|
|
|
} else {
|
|
|
|
out.WriteString(s[:from])
|
|
|
|
cmd := s[from+len(delim_open) : to]
|
|
|
|
s = s[to+len(delim_close):]
|
|
|
|
m := strings.Fields(cmd)
|
|
|
|
if len(m) == 1 {
|
|
|
|
if v, ok := vars[m[0]]; ok {
|
|
|
|
out.WriteString(v)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if res, err := run(vars, m[0], m[1:]...); err == nil {
|
|
|
|
out.WriteString(res)
|
|
|
|
} else {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-29 12:46:05 -04:00
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
return s, nil
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
|
2015-08-29 12:46:05 -04:00
|
|
|
// Renders markdown with the given layout into html expanding all the macros
|
2015-09-02 11:00:14 -04:00
|
|
|
func buildMarkdown(path string, w io.Writer, vars Vars) error {
|
2015-09-02 13:05:09 -04:00
|
|
|
v, body, err := getVars(path, vars)
|
2014-12-05 11:59:56 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-02 11:00:14 -04:00
|
|
|
content, err := render(body, v)
|
2014-12-05 11:59:56 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-02 10:54:16 -04:00
|
|
|
v["content"] = string(blackfriday.MarkdownCommon([]byte(content)))
|
2015-08-30 08:20:35 -04:00
|
|
|
if w == nil {
|
|
|
|
out, err := os.Create(filepath.Join(PUBDIR, renameExt(path, "", ".html")))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer out.Close()
|
|
|
|
w = out
|
|
|
|
}
|
2015-08-29 12:46:05 -04:00
|
|
|
if strings.HasSuffix(v["layout"], ".amber") {
|
2015-09-02 11:00:14 -04:00
|
|
|
return buildAmber(filepath.Join(ZSDIR, v["layout"]), w, v)
|
2015-08-29 12:46:05 -04:00
|
|
|
} else {
|
2015-09-02 11:00:14 -04:00
|
|
|
return buildHTML(filepath.Join(ZSDIR, v["layout"]), w, v)
|
2015-08-29 12:46:05 -04:00
|
|
|
}
|
2015-08-29 09:07:18 -04:00
|
|
|
}
|
|
|
|
|
2015-08-29 12:46:05 -04:00
|
|
|
// Renders text file expanding all variable macros inside it
|
2015-09-02 11:00:14 -04:00
|
|
|
func buildHTML(path string, w io.Writer, vars Vars) error {
|
2015-09-02 13:05:09 -04:00
|
|
|
v, body, err := getVars(path, vars)
|
2014-12-05 11:59:56 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
if body, err = render(body, v); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
tmpl, err := template.New("").Delims("<%", "%>").Parse(body)
|
2014-12-05 11:59:56 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-08-30 08:22:00 -04:00
|
|
|
if w == nil {
|
|
|
|
f, err := os.Create(filepath.Join(PUBDIR, path))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
w = f
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
return tmpl.Execute(w, vars)
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
|
2015-08-29 12:46:05 -04:00
|
|
|
// Renders .amber file into .html
|
2015-09-02 11:00:14 -04:00
|
|
|
func buildAmber(path string, w io.Writer, vars Vars) error {
|
2015-09-02 13:05:09 -04:00
|
|
|
v, body, err := getVars(path, vars)
|
2015-08-29 11:47:16 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
a := amber.New()
|
|
|
|
if err := a.Parse(body); err != nil {
|
2015-09-02 13:35:26 -04:00
|
|
|
fmt.Println(body)
|
2015-09-02 13:05:09 -04:00
|
|
|
return err
|
2015-08-30 08:22:00 -04:00
|
|
|
}
|
|
|
|
|
2015-08-29 11:47:16 -04:00
|
|
|
t, err := a.Compile()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-02 13:35:26 -04:00
|
|
|
|
|
|
|
htmlBuf := &bytes.Buffer{}
|
|
|
|
if err := t.Execute(htmlBuf, v); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if body, err = render(string(htmlBuf.Bytes()), v); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-30 08:20:35 -04:00
|
|
|
if w == nil {
|
|
|
|
f, err := os.Create(filepath.Join(PUBDIR, renameExt(path, ".amber", ".html")))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
w = f
|
2015-08-29 11:47:16 -04:00
|
|
|
}
|
2015-09-02 13:35:26 -04:00
|
|
|
_, err = io.WriteString(w, body)
|
|
|
|
return err
|
2015-08-29 11:47:16 -04:00
|
|
|
}
|
|
|
|
|
2015-08-29 12:46:05 -04:00
|
|
|
// Compiles .gcss into .css
|
2015-08-30 08:20:35 -04:00
|
|
|
func buildGCSS(path string, w io.Writer) error {
|
2015-08-29 12:46:05 -04:00
|
|
|
f, err := os.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
2015-08-30 08:20:35 -04:00
|
|
|
if w == nil {
|
|
|
|
s := strings.TrimSuffix(path, ".gcss") + ".css"
|
|
|
|
css, err := os.Create(filepath.Join(PUBDIR, s))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
2015-08-30 08:20:35 -04:00
|
|
|
defer css.Close()
|
|
|
|
w = css
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
2015-08-30 08:20:35 -04:00
|
|
|
_, err = gcss.Compile(w, f)
|
2014-12-05 14:03:33 -05:00
|
|
|
return err
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:20:35 -04:00
|
|
|
// Copies file as is from path to writer
|
|
|
|
func buildRaw(path string, w io.Writer) error {
|
|
|
|
in, err := os.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-08-29 13:54:55 -04:00
|
|
|
}
|
2015-08-30 08:20:35 -04:00
|
|
|
defer in.Close()
|
|
|
|
if w == nil {
|
|
|
|
if out, err := os.Create(filepath.Join(PUBDIR, path)); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
defer out.Close()
|
|
|
|
w = out
|
2015-08-29 12:46:05 -04:00
|
|
|
}
|
|
|
|
}
|
2015-08-30 08:20:35 -04:00
|
|
|
_, err = io.Copy(w, in)
|
|
|
|
return err
|
2015-08-29 17:43:59 -04:00
|
|
|
}
|
|
|
|
|
2015-09-02 11:00:14 -04:00
|
|
|
func build(path string, w io.Writer, vars Vars) error {
|
2015-08-30 08:20:35 -04:00
|
|
|
ext := filepath.Ext(path)
|
|
|
|
if ext == ".md" || ext == ".mkd" {
|
2015-09-02 11:00:14 -04:00
|
|
|
return buildMarkdown(path, w, vars)
|
2015-08-30 08:20:35 -04:00
|
|
|
} else if ext == ".html" || ext == ".xml" {
|
2015-09-02 11:00:14 -04:00
|
|
|
return buildHTML(path, w, vars)
|
2015-08-30 08:20:35 -04:00
|
|
|
} else if ext == ".amber" {
|
2015-09-02 11:00:14 -04:00
|
|
|
return buildAmber(path, w, vars)
|
2015-08-30 08:20:35 -04:00
|
|
|
} else if ext == ".gcss" {
|
|
|
|
return buildGCSS(path, w)
|
|
|
|
} else {
|
|
|
|
return buildRaw(path, w)
|
2015-08-29 12:46:05 -04:00
|
|
|
}
|
2015-08-29 13:54:55 -04:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:20:35 -04:00
|
|
|
func buildAll(watch bool) {
|
2015-08-29 13:54:55 -04:00
|
|
|
lastModified := time.Unix(0, 0)
|
|
|
|
modified := false
|
|
|
|
|
|
|
|
vars := globals()
|
2014-12-05 11:59:56 -05:00
|
|
|
for {
|
|
|
|
os.Mkdir(PUBDIR, 0755)
|
2015-09-02 13:41:06 -04:00
|
|
|
filepath.Walk(".", func(path string, info os.FileInfo, err error) error {
|
2014-12-05 11:59:56 -05:00
|
|
|
// ignore hidden files and directories
|
|
|
|
if filepath.Base(path)[0] == '.' || strings.HasPrefix(path, ".") {
|
|
|
|
return nil
|
|
|
|
}
|
2015-08-30 17:16:51 -04:00
|
|
|
// inform user about fs walk errors, but continue iteration
|
|
|
|
if err != nil {
|
2015-09-02 13:41:06 -04:00
|
|
|
fmt.Println("error:", err)
|
2015-08-30 17:16:51 -04:00
|
|
|
return nil
|
|
|
|
}
|
2014-12-05 11:59:56 -05:00
|
|
|
|
2014-12-05 14:03:33 -05:00
|
|
|
if info.IsDir() {
|
|
|
|
os.Mkdir(filepath.Join(PUBDIR, path), 0755)
|
|
|
|
return nil
|
|
|
|
} else if info.ModTime().After(lastModified) {
|
|
|
|
if !modified {
|
2015-09-02 13:05:09 -04:00
|
|
|
// First file in this build cycle is about to be modified
|
|
|
|
run(vars, "prehook")
|
2014-12-05 14:03:33 -05:00
|
|
|
modified = true
|
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
log.Println("build:", path)
|
2015-09-02 11:00:14 -04:00
|
|
|
return build(path, nil, vars)
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2014-12-05 14:03:33 -05:00
|
|
|
if modified {
|
2015-09-02 13:05:09 -04:00
|
|
|
// At least one file in this build cycle has been modified
|
|
|
|
run(vars, "posthook")
|
2014-12-05 14:03:33 -05:00
|
|
|
modified = false
|
|
|
|
}
|
2015-08-30 08:20:35 -04:00
|
|
|
if !watch {
|
2014-12-05 11:59:56 -05:00
|
|
|
break
|
|
|
|
}
|
2015-08-30 08:20:35 -04:00
|
|
|
lastModified = time.Now()
|
2014-12-05 11:59:56 -05:00
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
func init() {
|
|
|
|
// prepend .zs to $PATH, so plugins will be found before OS commands
|
|
|
|
p := os.Getenv("PATH")
|
|
|
|
p = ZSDIR + ":" + p
|
|
|
|
os.Setenv("PATH", p)
|
|
|
|
}
|
|
|
|
|
2014-12-05 11:59:56 -05:00
|
|
|
func main() {
|
|
|
|
if len(os.Args) == 1 {
|
|
|
|
fmt.Println(os.Args[0], "<command> [args]")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
cmd := os.Args[1]
|
|
|
|
args := os.Args[2:]
|
|
|
|
switch cmd {
|
|
|
|
case "build":
|
2015-08-30 08:22:00 -04:00
|
|
|
if len(args) == 0 {
|
|
|
|
buildAll(false)
|
|
|
|
} else if len(args) == 1 {
|
2015-09-02 11:00:14 -04:00
|
|
|
if err := build(args[0], os.Stdout, globals()); err != nil {
|
2015-08-30 08:22:00 -04:00
|
|
|
fmt.Println("ERROR: " + err.Error())
|
|
|
|
}
|
2014-12-05 11:59:56 -05:00
|
|
|
} else {
|
2015-08-30 08:22:00 -04:00
|
|
|
fmt.Println("ERROR: too many arguments")
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
2015-08-30 08:22:00 -04:00
|
|
|
case "watch":
|
|
|
|
buildAll(true)
|
2015-08-30 08:20:35 -04:00
|
|
|
case "var":
|
2015-09-02 11:00:14 -04:00
|
|
|
if len(args) == 0 {
|
|
|
|
fmt.Println("var: filename expected")
|
|
|
|
} else {
|
|
|
|
s := ""
|
2015-09-02 13:05:09 -04:00
|
|
|
if vars, _, err := getVars(args[0], globals()); err != nil {
|
2015-09-02 11:00:14 -04:00
|
|
|
fmt.Println("var: " + err.Error())
|
|
|
|
} else {
|
|
|
|
if len(args) > 1 {
|
|
|
|
for _, a := range args[1:] {
|
|
|
|
s = s + vars[a] + "\n"
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for k, v := range vars {
|
|
|
|
s = s + k + ":" + v + "\n"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fmt.Println(strings.TrimSpace(s))
|
|
|
|
}
|
2014-12-05 11:59:56 -05:00
|
|
|
default:
|
2015-09-02 13:05:09 -04:00
|
|
|
if s, err := run(globals(), cmd, args...); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
} else {
|
|
|
|
fmt.Println(s)
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|