mirror of
https://github.com/sbrow/ps.git
synced 2025-12-29 18:47:38 -05:00
Fixed an error in dojs.vbs where arguments were being split.
* Fixed SetText() to update bounds.
This commit is contained in:
2
ps.go
2
ps.go
@@ -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...)
|
||||
|
||||
Reference in New Issue
Block a user