diff options
| -rw-r--r-- | ui/build/paths/config.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ui/build/paths/config.go b/ui/build/paths/config.go index ed2d9cab1..f965f245a 100644 --- a/ui/build/paths/config.go +++ b/ui/build/paths/config.go @@ -74,8 +74,10 @@ func GetConfig(name string) PathConfig { } var Configuration = map[string]PathConfig{ - "bash": Allowed, - "bc": Allowed, + "bash": Allowed, + "bc": Allowed, + // We need bzip2 here even though we provide a bzip2 binary because + // GNU tar seems to avoid calling ours. "bzip2": Allowed, "date": Allowed, "dd": Allowed, @@ -104,7 +106,6 @@ var Configuration = map[string]PathConfig{ "timeout": Allowed, "tr": Allowed, "unzip": Allowed, - "xz": Allowed, "zip": Allowed, "zipinfo": Allowed, |