Add ShellEscapeListIncludingSpaces
This simplifies escaping for aquery. Test: build/bazel/ci/mixed_droid.sh Change-Id: I88356a8eda0c6a6ac9426d37cd386f0a94b8818b
This commit is contained in:
parent
6fbc68d41d
commit
3a988df18a
1 changed files with 8 additions and 0 deletions
|
@ -53,7 +53,15 @@ func ShellEscapeList(slice []string) []string {
|
|||
slice[i] = ShellEscape(s)
|
||||
}
|
||||
return slice
|
||||
}
|
||||
|
||||
func ShellEscapeListIncludingSpaces(slice []string) []string {
|
||||
slice = append([]string(nil), slice...)
|
||||
|
||||
for i, s := range slice {
|
||||
slice[i] = ShellEscapeIncludingSpaces(s)
|
||||
}
|
||||
return slice
|
||||
}
|
||||
|
||||
func shellUnsafeChar(r rune) bool {
|
||||
|
|
Loading…
Reference in a new issue