aboutsummaryrefslogtreecommitdiffstats
path: root/update_web_wml
blob: 52ab65329f1fbbcee83269cb3e55c087abd703bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl -w

# This script must be setuid and owned by treacy:distmnt

# update the webwml repository and run a make on all the language
# directories

$WML_DIR = '/debian2/web/webwml';

$< = $>;
$ENV{PATH} = "/bin:/usr/bin";
$ENV{HOME} = "/debian/home/treacy";

chdir $WML_DIR;
system("cvs update -d");

system("make");
exit;

© 2014-2024 Faster IT GmbH | imprint | privacy policy