diff options
author | Keith Packard <keithp@keithp.com> | 2011-09-21 18:13:55 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-09-21 22:57:06 -0700 |
commit | 7bc007ed45af8fe9ef5daeb7844f183cd9a49035 (patch) | |
tree | ac2eb6ad18e2ac68a211e0af996f925f7577f01a | |
parent | 74d5dea5d5ef91db823018b631613d15c6da085d (diff) |
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 <keithp@keithp.com>
-rw-r--r-- | src/util/make-kalman | 2 |
1 files changed, 1 insertions, 1 deletions
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" |