fix(tvix): use correct value of SANDBOX_SHELL

Change-Id: I8e471c0f0a30337681042beeff633821eee67346
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1746
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
This commit is contained in:
Kane York 2020-08-13 19:15:04 -07:00 committed by kanepyork
parent 72e61aa584
commit 0124691fdd

View file

@ -41,7 +41,8 @@ if (CLANG_TIDY_PATH)
endif()
if (DEFINED ENV{SANDBOX_SHELL})
set(SANDBOX_SHELL ENV{SANDBOX_SHELL})
message("Using SANDBOX_SHELL = $ENV{SANDBOX_SHELL}")
set(SANDBOX_SHELL "$ENV{SANDBOX_SHELL}")
else()
find_program(BUSYBOX busybox)
if (BUSYBOX)