From 7bc007ed45af8fe9ef5daeb7844f183cd9a49035 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 21 Sep 2011 18:13:55 -0700 Subject: [PATCH 1/1] altos: Fix make-kalman to run under dash Dash can't deal with >&, so use the old-school > file 2>&1 Signed-off-by: Keith Packard --- src/util/make-kalman | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/make-kalman b/src/util/make-kalman index b4e5d919..397d6020 100644 --- a/src/util/make-kalman +++ b/src/util/make-kalman @@ -1,6 +1,6 @@ #!/bin/bash -cd $1 >&/dev/null +cd $1 2> /dev/null 1>&2 SIGMA_BOTH="-M 2 -H 6 -A 2" SIGMA_BARO="-M 2 -H 6 -A 2" -- 2.30.2