diff options
author | 2012-06-22 21:49:34 +0200 | |
---|---|---|
committer | 2012-06-22 21:49:34 +0200 | |
commit | b678d3d150419077c0cf08d641204a155c41d315 (patch) | |
tree | 1fb776b5f6483cf688b5ae32fa7676a01ed5a5c2 /tinderbox-restart.sh | |
parent | Add netcat6 to the list if ${TINDERBOX_ANALYSIS_ADDR} is set. (diff) | |
download | flameeyes-tinderbox-b678d3d150419077c0cf08d641204a155c41d315.tar.gz flameeyes-tinderbox-b678d3d150419077c0cf08d641204a155c41d315.tar.bz2 flameeyes-tinderbox-b678d3d150419077c0cf08d641204a155c41d315.zip |
Avoid subshell.
Diffstat (limited to 'tinderbox-restart.sh')
-rwxr-xr-x | tinderbox-restart.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinderbox-restart.sh b/tinderbox-restart.sh index 0ca9b55..4cdc040 100755 --- a/tinderbox-restart.sh +++ b/tinderbox-restart.sh @@ -101,7 +101,7 @@ fi emerge -u \ sys-libs/glibc \ - $([[ -n ${BTI_ACCOUNT} ]] && echo net-misc/bti) \ + ${BTI_ACCOUNT:+net-misc/bti} \ ${TINDERBOX_ANALYSIS_ADDR:+net-analyzer/netcat6} \ app-misc/screen \ app-portage/gentoolkit \ |