Fixed an error in dojs.vbs where arguments were being split.

* Fixed SetText() to update bounds.
This commit is contained in:
Unknown
2018-04-29 21:37:58 -04:00
parent 0b9e1661c4
commit 0d8be61858
4 changed files with 18 additions and 8 deletions

2
ps.go
View File

@@ -148,7 +148,7 @@ func run(name string, args ...string) ([]byte, error) {
if strings.Contains(name, "dojs") {
args = append([]string{opts, filepath.Join(pkgpath, "scripts", name)},
args[0],
fmt.Sprintf("%s", strings.Join(args[1:], ",")),
fmt.Sprintf("%s", strings.Join(args[1:], ",,")),
)
} else {
args = append([]string{opts, filepath.Join(pkgpath, "scripts", name)}, args...)