diff options
author | Anne Nicolas <ennael@mageia.org> | 2015-01-13 14:06:52 +0100 |
---|---|---|
committer | Anne Nicolas <ennael@mageia.org> | 2015-01-13 14:06:52 +0100 |
commit | f25c78c32bd832eaaa2581f6051493552f01a111 (patch) | |
tree | cda18da4aeccc054149839078a76d40ba07a5cde | |
parent | a8ef50fba10df1ca6567ef94aae2271f8c866999 (diff) | |
parent | a6a1dc62116e1196a9cc89f58784a85efd85bc65 (diff) | |
download | bcd-f25c78c32bd832eaaa2581f6051493552f01a111.tar bcd-f25c78c32bd832eaaa2581f6051493552f01a111.tar.gz bcd-f25c78c32bd832eaaa2581f6051493552f01a111.tar.bz2 bcd-f25c78c32bd832eaaa2581f6051493552f01a111.tar.xz bcd-f25c78c32bd832eaaa2581f6051493552f01a111.zip |
Merge branch 'master' of git://git.mageia.org/software/build-system/bcd
-rw-r--r-- | BCD/Web.pm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,7 +43,7 @@ sub show_general_info { my $date_repo; if (-f "$repo/$based_on/$arch/VERSION") { $date_repo = read_file("$repo/$based_on/$arch/VERSION"); - } else { $date_repo = "UNKNOW date"; print "You should check that a VERSION file is present" } + } else { $date_repo = "UNKNOWN date"; print "You should check that a VERSION file is present" } open my $B, ">$index"; print $B "<HTML> <HEAD> @@ -100,7 +100,7 @@ h3 { <BODY> "; print $B "<ul>\n"; - print $B "<li>Date of the synchronisation to the cooker repository: <b>$date_repo</b></li>\n"; + print $B "<li>Date repository was synchronized: <b>$date_repo</b></li>\n"; print $B "<li>Configuration file used: <a href='$conf_file'>$conf_file</a></li>\n"; print $B "<li>Architecture: <b>$arch</b></li>\n"; print $B "<li>Distribution based on: <b>$based_on</b></li>\n"; |