Move env(1) to toybox.

Test: clean build
Change-Id: I52770c022f7d34fb83c990f485b0ca3ea29e97ee
This commit is contained in:
Elliott Hughes 2018-11-15 13:55:56 -08:00
parent c508121448
commit bb19518a54
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,6 @@ var Configuration = map[string]PathConfig{
"du": Allowed, "du": Allowed,
"echo": Allowed, "echo": Allowed,
"egrep": Allowed, "egrep": Allowed,
"env": Allowed,
"expr": Allowed, "expr": Allowed,
"find": Allowed, "find": Allowed,
"fuser": Allowed, "fuser": Allowed,
@ -172,6 +171,7 @@ var Configuration = map[string]PathConfig{
// On linux we'll use the toybox version of these instead // On linux we'll use the toybox version of these instead
"cat": Toybox, "cat": Toybox,
"comm": Toybox, "comm": Toybox,
"env": Toybox,
"id": Toybox, "id": Toybox,
"sleep": Toybox, "sleep": Toybox,
"true": Toybox, "true": Toybox,