diff options
author | Lukas Fleischer | 2013-04-09 20:02:32 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2013-04-10 14:49:31 +0200 |
commit | 016364d4edef261fb55257e36d8a47828d398f96 (patch) | |
tree | e5730d3da3dca74177398f3e7ba3f01911a32916 /tests/t0010-validate-html.sh | |
parent | 389cc17357e2040c9542d3e085f64a8d2f085e9a (diff) | |
download | cgit-016364d4edef261fb55257e36d8a47828d398f96.tar.gz cgit-016364d4edef261fb55257e36d8a47828d398f96.tar.bz2 cgit-016364d4edef261fb55257e36d8a47828d398f96.zip |
tests/: Do not use `sed -i`
"-i" isn't part of the POSIX standard and doesn't work on several
platforms such as OpenBSD. Use a temporary file instead.
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'tests/t0010-validate-html.sh')
-rwxr-xr-x | tests/t0010-validate-html.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/t0010-validate-html.sh b/tests/t0010-validate-html.sh index 5bd0a25..ca08d69 100755 --- a/tests/t0010-validate-html.sh +++ b/tests/t0010-validate-html.sh | |||
@@ -8,8 +8,8 @@ test_url() | |||
8 | { | 8 | { |
9 | tidy_opt="-eq" | 9 | tidy_opt="-eq" |
10 | test -z "$NO_TIDY_WARNINGS" || tidy_opt+=" --show-warnings no" | 10 | test -z "$NO_TIDY_WARNINGS" || tidy_opt+=" --show-warnings no" |
11 | cgit_url "$1" >tidy-$test_count || return | 11 | cgit_url "$1" >tidy-$test_count.tmp || return |
12 | sed -ie "1,4d" tidy-$test_count || return | 12 | sed -e "1,4d" tidy-$test_count.tmp >tidy-$test_count || return |
13 | "$tidy" $tidy_opt tidy-$test_count | 13 | "$tidy" $tidy_opt tidy-$test_count |
14 | rc=$? | 14 | rc=$? |
15 | 15 | ||