pool is created on demand (#6)

This commit is contained in:
Pavel Vorobyov
2019-12-19 16:13:43 +03:00
committed by GitHub
parent 93e477ed62
commit 91f776275d
7 changed files with 32 additions and 12 deletions

View File

@@ -50,7 +50,6 @@ func (c *Cli) runAlias(name string, argsLine string, args ...string) {
}
func exterpolate(al *alias, argsLine string, args ...string) (string, error) {
fmt.Println(al, argsLine, args)
res := ""
for i := 0; i < len(al.proxy); i++ {
if i < len(al.proxy)-1 && al.proxy[i] == '#' {