Skip to content

Commit

Permalink
Item984: someone fixed pathnames but never checked the fixes in
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@2342 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
CrawfordCurrie authored and CrawfordCurrie committed Feb 4, 2009
1 parent 51241e7 commit 891d540
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/tools/develop/cron.sh
Expand Up @@ -37,7 +37,7 @@ mv Foswiki.pm.new Foswiki.pm
# Make sure we have links to all non-existing webs to trunk
for dir in data pub; do
cd ../$dir
for f in /home/foswiki.org/$dir/*; do
for f in /home/foswiki.org/trunk/core/$dir/*; do
if [ -d $f -a ! -e `basename $f` ]; then
ln -s $f
fi
Expand Down
2 changes: 1 addition & 1 deletion core/tools/develop/genwebnotify.pl
Expand Up @@ -3,7 +3,7 @@
#
# Generates WebNotify from the WaitingFor and ReportedBy fields
#
my $where = '/home/foswiki.org/data/Tasks';
my $where = '/home/foswiki.org/trunk/core/data/Tasks';
my $text = `cd /home/trunk.foswiki.org/core/bin && perl -T ./view topic="Tasks.GenerateWebNotify" -skin text -contenttype text/plain`;
my %topics;
foreach my $line (split(/\r?\n/, $text)) {
Expand Down
3 changes: 2 additions & 1 deletion core/tools/develop/post-commit.pl
Expand Up @@ -7,9 +7,10 @@
# Must be chdired to the tools subdirectory when this is run
#
use strict;
use warnings;

my $REPOS = $ARGV[0];
my $BUGS = '/home/foswiki.org/data/Tasks';
my $BUGS = '/usr/home/foswiki.org/trunk/core/data/Tasks';
my $SUPPORT = '/home/svn';

my $verbose = 0; # 1 to debug
Expand Down

0 comments on commit 891d540

Please sign in to comment.