aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2016-02-18 23:25:54 -0500
committerAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2016-02-18 23:25:54 -0500
commitb4222955b42a0a68dfe0a6719d48ea6ed339edec (patch)
treec22d5cedb59b8929b47936fc3d4758b63bc01161 /t
parent693e87fe18b1e5f883fcdaa37ca5441f06734689 (diff)
downloadikiwiki-b4222955b42a0a68dfe0a6719d48ea6ed339edec.tar
ikiwiki-b4222955b42a0a68dfe0a6719d48ea6ed339edec.tar.gz
Fix CVS tests by uninverting $installed (cdfb4ab).
Diffstat (limited to 't')
-rwxr-xr-xt/cvs.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/cvs.t b/t/cvs.t
index 43a2ca3a8..371c21ec9 100755
--- a/t/cvs.t
+++ b/t/cvs.t
@@ -609,10 +609,10 @@ sub _generate_and_configure_post_commit_hook {
require IkiWiki::Wrapper;
if ($installed) {
- $IkiWiki::program_to_wrap = 'ikiwiki.out';
+ $IkiWiki::program_to_wrap = `which ikiwiki`;
}
else {
- $IkiWiki::program_to_wrap = `which ikiwiki`;
+ $IkiWiki::program_to_wrap = './ikiwiki.out';
}
# XXX substitute its interpreter to Makefile's $(PERL)
# XXX best solution: do this to all scripts during build