mirror of
https://git.yoctoproject.org/poky
synced 2026-04-02 17:02:21 +02:00
run-postinsts: Fix typo
Fix a typo for stderr redirection. (From OE-Core rev: b03c670d44b28c673393468bbe62919f3f8186de) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user