summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/build/paths/config.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/ui/build/paths/config.go b/ui/build/paths/config.go
index 788646610..ef6fd5f67 100644
--- a/ui/build/paths/config.go
+++ b/ui/build/paths/config.go
@@ -39,6 +39,12 @@ var Forbidden = PathConfig{
Error: true,
}
+var Log = PathConfig{
+ Symlink: true,
+ Log: true,
+ Error: false,
+}
+
// The configuration used if the tool is not listed in the config below.
// Currently this will create the symlink, but log and error when it's used. In
// the future, I expect the symlink to be removed, and this will be equivalent
@@ -104,7 +110,7 @@ var Configuration = map[string]PathConfig{
"openssl": Allowed,
"paste": Allowed,
"patch": Allowed,
- "perl": Allowed,
+ "perl": Log,
"pgrep": Allowed,
"pkill": Allowed,
"ps": Allowed,