scripts: fix dumping 'other environment'

Do not sort the environment, it cripples the output.
This commit is contained in:
Yann E. MORIN" 2010-02-18 00:04:48 +01:00
parent 933404b449
commit 26e5cb4021

View File

@ -483,8 +483,8 @@ if [ -z "${CT_RESTART}" ]; then
CT_DoLog EXTRA " host = ${CT_REAL_HOST}"
CT_DoLog EXTRA " target = ${CT_TARGET}"
set |grep -E '^CT_.+=' |sort |CT_DoLog DEBUG
CT_DoLog DEBUG " Other environment:"
printenv |grep -v -E '^CT_.+=' |sort |CT_DoLog DEBUG
CT_DoLog DEBUG "Other environment:"
printenv |grep -v -E '^CT_.+=' |CT_DoLog DEBUG
CT_EndStep
fi