We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ae7a51 + 77e5726 commit 853563dCopy full SHA for 853563d
t/t0050-filesystem.sh
@@ -4,8 +4,8 @@ test_description='Various filesystem issues'
4
5
. ./test-lib.sh
6
7
-auml=`printf '\xc3\xa4'`
8
-aumlcdiar=`printf '\x61\xcc\x88'`
+auml=$(printf '\303\244')
+aumlcdiar=$(printf '\141\314\210')
9
10
case_insensitive=
11
unibad=
t/t3419-rebase-patch-id.sh
@@ -1,4 +1,4 @@
1
-#!/bin/bash
+#!/bin/sh
2
3
test_description='git rebase - test patch id computation'
@@ -27,7 +27,7 @@ scramble()
27
then
28
echo "$x"
29
fi
30
- i=$(((i+1) % 10))
+ i=$((($i+1) % 10))
31
done < "$1" > "$1.new"
32
mv -f "$1.new" "$1"
33
}
0 commit comments