aboutsummaryrefslogtreecommitdiff
path: root/t/manual/git_revert/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 't/manual/git_revert/Makefile')
-rw-r--r--t/manual/git_revert/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/t/manual/git_revert/Makefile b/t/manual/git_revert/Makefile
index 9e2220d11..34db8c48a 100644
--- a/t/manual/git_revert/Makefile
+++ b/t/manual/git_revert/Makefile
@@ -9,15 +9,17 @@ all:
mkdir -p git/doc/writable
cd git && git init
cp index.mdwn git/doc/index.mdwn
+ cp -a $(CURDIR)/../../../doc/wikiicons git/doc/
+ cp -a $(CURDIR)/../../../doc/recentchanges.mdwn git/doc/
echo "This is the first test page" > git/doc/writable/one.mdwn
echo "This is the second test page" > git/doc/writable/two.mdwn
- cd git && git add doc && git commit -m 'Initial commit'
+ cd git && git add . && git commit -m 'Initial commit'
$(ikiwiki) --setup ikiwiki.setup
echo "This is the first test page, it was first" > git/doc/writable/one.mdwn
- cd git && git add doc && git commit -m 'First web commit'
+ cd git && git add . && git commit -m 'First web commit'
$(ikiwiki) --setup ikiwiki.setup
echo "This is the second test page, it came second" > git/doc/writable/two.mdwn
- cd git && git add doc && git commit -m 'Second web commit'
+ cd git && git add . && git commit -m 'Second web commit'
$(ikiwiki) --setup ikiwiki.setup
cd git && git mv doc/writable/one.mdwn doc/one.mdwn
cd git && git mv doc/writable/two.mdwn two.mdwn