From b03c670d44b28c673393468bbe62919f3f8186de Mon Sep 17 00:00:00 2001 From: Yi Zhao Date: Wed, 17 Jul 2013 17:09:24 +0800 Subject: [PATCH] run-postinsts: Fix typo Fix a typo for stderr redirection. Signed-off-by: Yi Zhao Signed-off-by: Saul Wold --- meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts index 2593066da0..d1bf582b0c 100755 --- a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts +++ b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts @@ -26,7 +26,7 @@ for i in `ls $pi_dir`; do echo "Running postinst $i..." if [ -x $i ]; then if [ "$POSTINST_LOGGING" = "1" ]; then - sh -c $i >>$LOGFILE 2&>1 + sh -c $i >>$LOGFILE 2>&1 else sh -c $i fi -- 2.40.1