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 fccf4a0 + b65c058 commit 445bb5bCopy full SHA for 445bb5b
t/t4122-apply-symlink-inside.sh
@@ -3,17 +3,10 @@
3
test_description='apply to deeper directory without getting fooled with symlink'
4
. ./test-lib.sh
5
6
-lecho () {
7
- for l_
8
- do
9
- echo "$l_"
10
- done
11
-}
12
-
13
test_expect_success setup '
14
15
mkdir -p arch/i386/boot arch/x86_64 &&
16
- lecho 1 2 3 4 5 >arch/i386/boot/Makefile &&
+ test_write_lines 1 2 3 4 5 >arch/i386/boot/Makefile &&
17
test_ln_s_add ../i386/boot arch/x86_64/boot &&
18
git add . &&
19
test_tick &&
@@ -22,7 +15,7 @@ test_expect_success setup '
22
23
rm arch/x86_64/boot &&
24
mkdir arch/x86_64/boot &&
25
- lecho 2 3 4 5 6 >arch/x86_64/boot/Makefile &&
+ test_write_lines 2 3 4 5 6 >arch/x86_64/boot/Makefile &&
26
27
20
28
21
git commit -a -m second &&
0 commit comments