ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/utils/cfutil.in
(Generate patch)

Comparing deliantra/server/utils/cfutil.in (file contents):
Revision 1.12 by root, Mon Mar 12 17:26:41 2007 UTC vs.
Revision 1.37 by root, Tue Jul 10 16:24:00 2007 UTC

6my $exec_prefix = "@exec_prefix@"; 6my $exec_prefix = "@exec_prefix@";
7my $datarootdir = "@datarootdir@"; 7my $datarootdir = "@datarootdir@";
8my $DATADIR = "@datadir@/@PACKAGE@"; 8my $DATADIR = "@datadir@/@PACKAGE@";
9 9
10my $CONVERT = "@CONVERT@"; 10my $CONVERT = "@CONVERT@";
11my $IDENTIFY = "@IDENTIFY@"; 11#my $IDENTIFY = "@IDENTIFY@";
12my $OPTIPNG = "@OPTIPNG@"; 12my $OPTIPNG = "@OPTIPNG@";
13my $RSYNC = "@RSYNC@"; 13my $RSYNC = "@RSYNC@";
14my $PNGNQ = "@PNGNQ@";
14 15
15use Getopt::Long; 16use Getopt::Long;
16use Coro::Event; 17use Coro::Event;
17use AnyEvent; 18use AnyEvent;
18use IO::AIO (); 19use IO::AIO ();
20use Crossfire; 21use Crossfire;
21use Coro; 22use Coro;
22use Coro::AIO; 23use Coro::AIO;
23use POSIX (); 24use POSIX ();
24use Digest::MD5; 25use Digest::MD5;
26use Coro::Storable; $Storable::canonical = 1;
25 27
26sub usage { 28sub usage {
27 warn <<EOF; 29 warn <<EOF;
28Usage: cfutil [-v] [-q] [--force] [--cache] 30Usage: cfutil [-v] [-q] [--force] [--cache]
29 [--install-arch path] 31 [--install-arch path]
41my $CACHE = 0; 43my $CACHE = 0;
42my $FORCE; 44my $FORCE;
43my $TMPDIR = "/tmp/cfutil$$~"; 45my $TMPDIR = "/tmp/cfutil$$~";
44my $TMPFILE = "aaaa0"; 46my $TMPFILE = "aaaa0";
45 47
48our %COLOR = (
49 black => 0,
50 white => 1,
51 navy => 2,
52 red => 3,
53 orange => 4,
54 blue => 5,
55 darkorange => 6,
56 green => 7,
57 lightgreen => 8,
58 grey => 9,
59 brown => 10,
60 gold => 11,
61 tan => 12,
62);
63
46END { system "rm", "-rf", $TMPDIR } 64END { system "rm", "-rf", $TMPDIR }
47 65
48Event->signal (signal => "INT", cb => sub { exit 1 }); 66Event->signal (signal => "INT", cb => sub { exit 1 });
49Event->signal (signal => "TERM", cb => sub { exit 1 }); 67Event->signal (signal => "TERM", cb => sub { exit 1 });
50 68
67} 85}
68 86
69sub inst_maps($) { 87sub inst_maps($) {
70 my (undef, $path) = @_; 88 my (undef, $path) = @_;
71 89
72 print "installing '$path' to '$DATADIR/maps'\n\n"; 90 print "\nInstalling '$path' to '$DATADIR/maps'\n\n";
73 91
74 if (!-f "$path/regions") { 92 if (!-f "$path/regions") {
75 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 93 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
76 exit 1 unless $FORCE; 94 exit 1 unless $FORCE;
77 } 95 }
78 96
79 system $RSYNC, "-av", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded"; 97 system $RSYNC, "-av", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded"
98 and die "map installation failed.\n";
99
100 print "maps installed successfully.\n";
80} 101}
81 102
82{ 103{
83 our %PNG32; 104 our %ANIMINFO;
84 our %FACEINFO; 105 our %FACEINFO;
106 our %RESOURCE;
85 our @ARC; 107 our @ARC;
108 our %ARC;
86 our $TRS; 109 our $TRS;
87 our $NFILE; 110 our $NFILE;
88 our %ANIM;
89 our $SMOOTH; 111 our $PATH;
90 112
113 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
114
91 our (@png, @trs, @arc); # files we are interested in 115 our (@png, @trs, @arc, @res); # files we are interested in
92 116
93 sub commit_png { 117 sub commit_png($$$) {
94 my ($name, $data) = @_; 118 my ($name, $data, $T) = @_;
95 119
96 $PNG32{$name} = $data; 120 $FACEINFO{$name}{"data$T"} = $data;
97 $FACEINFO{$name} ||= {};
98 } 121 }
99 122
100 sub process_png { 123 sub process_png {
101 while (@png) { 124 while (@png) {
102 my $path = pop @png; 125 my ($path, $delete) = @{pop @png};
103 126
104 my $png; 127 my $png;
105 aio_lstat $path; 128 aio_lstat $path;
106 my ($size, $mtime) = (stat _)[7,9]; 129 my ($size, $mtime) = (stat _)[7,9];
107 130
108 if (0 > aio_load $path, $png) { 131 if (0 > aio_load $path, $png) {
109 warn "$path: $!, skipping.\n"; 132 warn "$path: $!, skipping.\n";
110 next; 133 next;
111 } 134 }
112 135
136 my $stem = $path;
137 my $T;
138
139 if ($stem =~ s/\.32x32\.png~?$//) {
140 $T = 32;
141 } elsif ($stem =~ s/\.64x64\.png~?$//) {
142 $T = 64;
143 } else {
144 warn "$path: weird filename, skipping.\n";
145 next;
146 }
147
113 # quickly extract width and height of the (necessarily PNG) image 148 # quickly extract width and height of the (necessarily PNG) image
114 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) { 149 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) {
115 warn "$path: not a recongized png file, skipping.\n"; 150 warn "$path: not a recognized png file, skipping.\n";
116 next; 151 next;
117 } 152 }
118 153
119 my ($w, $h) = unpack "NN", $1; 154 my ($w, $h) = unpack "NN", $1;
120
121 (my $face = $path) =~ s/^.*\///;
122 my $T = 32;
123
124 unless ($face =~ s/\.base\.(...)\.png$/.$1/) {
125 warn "$path: weird filename, skipping.\n";
126 next;
127 }
128 155
129 if ($w < $T || $h < $T) { 156 if ($w < $T || $h < $T) {
130 warn "$path: too small ($w $h), skipping.\n"; 157 warn "$path: too small ($w $h), skipping.\n";
131 next; 158 next;
132 } 159 }
134 if ($w % $T || $h % $T) { 161 if ($w % $T || $h % $T) {
135 warn "$path: weird png size ($w $h), skipping.\n"; 162 warn "$path: weird png size ($w $h), skipping.\n";
136 next; 163 next;
137 } 164 }
138 165
166 unless ($path =~ /~$/) {
167 # possibly enlarge
168 if (0 > aio_stat "$stem.64x64.png") {
169 my $other = "$stem.64x64.png~";
170
171 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
172 my $wrap = 0; # for the time being
173 fork_sub {
174 system "convert png:\Q$path\E -depth 8 rgba:-"
175 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap"
176 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $QUANTIZE -quality 00 png32:\Q$other\E~"
177 and die "convert/hq2xa pipeline error: status $? ($!)";
178 system $OPTIPNG, "-i0", "-q", "$other~";
179 die "$other~ has zero size, aborting." unless -s "$other~";
180 rename "$other~", $other;
181 };
182 }
183
184 push @png, [$other, !$CACHE];
185 }
186
187 # possibly scale down
188 if (0 > aio_stat "$stem.32x32.png") {
189 my $other = "$stem.32x32.png~";
190
191 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
192 fork_sub {
193 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
194 system $OPTIPNG, "-i0", "-q", "$other~";
195
196 # reduce smoothfaces >10000 bytes
197 if ($stem =~ /_S\./ && (-s "$other~") > 10000) {
198 my $ncolor = 256;
199 while () {
200 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
201 system $OPTIPNG, "-i0", "-q", "$other~~";
202 last if 10000 > -s "$other~~";
203 $ncolor = int $ncolor * 0.9;
204 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes";
205 }
206
207 printf "reduced %s from %d to %d bytes using %d colours.\n",
208 $other, -s "$other~", -s "$other~~", $ncolor
209 if $VERBOSE >= 2;
210 rename "$other~~", "$other~";
211 }
212
213 die "$other~ has zero size, aborting." unless -s "$other~";
214 rename "$other~", $other;
215 };
216 }
217
218 #warn "scaled down $path to $other\n";#d#
219 push @png, [$other, !$CACHE];
220 }
221 }
222
223 (my $face = $stem) =~ s/^.*\///;
224
225 # split all bigfaces, but avoid smoothfaces (*_S)
139 if (($w > $T || $h > $T) && $face !~ /_S\./) { 226 if (($w > $T || $h > $T) && $face !~ /_S\./) {
140 # split 227 # split
141 my @tile; 228 my @tile;
142 for my $x (0 .. (int $w / $T) - 1) { 229 for my $x (0 .. (int $w / $T) - 1) {
143 for my $y (0 .. (int $h / $T) - 1) { 230 for my $y (0 .. (int $h / $T) - 1) {
157 ( 244 (
158 "(", 245 "(",
159 "+clone", 246 "+clone",
160 -crop => (sprintf "%dx%d+%d+%d", $T, $T, $_->[0] * $T, $_->[1] * $T), 247 -crop => (sprintf "%dx%d+%d+%d", $T, $T, $_->[0] * $T, $_->[1] * $T),
161 "+repage", 248 "+repage",
249 -quality => "00",
162 -write => "png:$_->[2]~", 250 -write => "png32:$_->[2]~",
163 "+delete", 251 "+delete",
164 ")", 252 ")",
165 ) 253 )
166 } @todo), 254 } @todo),
167 "null:"; 255 "null:";
171 close $convert; 259 close $convert;
172 260
173 # pass 2, optimise, and rename 261 # pass 2, optimise, and rename
174 for (@todo) { 262 for (@todo) {
175 system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~"; 263 system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~";
264 die "$_->[2]~ has zero size, aborting." unless -s "$_->[2]~";
176 rename "$_->[2]~", $_->[2]; 265 rename "$_->[2]~", $_->[2];
177 } 266 }
178 }; 267 };
179 } 268 }
180 269
184 273
185 if (0 > aio_load $file, $tile) { 274 if (0 > aio_load $file, $tile) {
186 die "$path: unable to read tile +$x+$y, aborting.\n"; 275 die "$path: unable to read tile +$x+$y, aborting.\n";
187 } 276 }
188 IO::AIO::aio_unlink $file unless $CACHE; 277 IO::AIO::aio_unlink $file unless $CACHE;
189 commit_png $x|$y ? "$face+$x+$y" : $face, $tile; 278 commit_png $x|$y ? "$face+$x+$y" : $face, $tile, $T;
190 } 279 }
191 } else { 280 } else {
192 # use as-is (either small, use smooth) 281 # use as-is (either small, use smooth)
193 commit_png $face, $png; 282 commit_png $face, $png, $T;
194 } 283 }
284
285 aio_unlink $path if $delete;
195 } 286 }
196 } 287 }
197 288
198 sub process_arc { 289 sub process_arc {
199 while (@arc) { 290 while (@arc) {
203 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/ 294 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
204 295
205 my $arc = read_arch "$dir/$file"; 296 my $arc = read_arch "$dir/$file";
206 for my $o (values %$arc) { 297 for my $o (values %$arc) {
207 push @ARC, $o; 298 push @ARC, $o;
299 for (my $m = $o; $m; $m = $m->{more}) {
300 $ARC{$m->{_name}} = $m;
301 }
208 302
209 $o->{editor_folder} = $dir; 303 $o->{editor_folder} = $dir;
210 304
211 my $visibility = delete $o->{visibility}; 305 my $visibility = delete $o->{visibility};
212 my $magicmap = delete $o->{magicmap}; 306 my $magicmap = delete $o->{magicmap};
223 my $x = $o->{x} - $dx; 317 my $x = $o->{x} - $dx;
224 my $y = $o->{y} - $dy; 318 my $y = $o->{y} - $dy;
225 319
226 my $ext = $x|$y ? "+$x+$y" : ""; 320 my $ext = $x|$y ? "+$x+$y" : "";
227 321
228 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/; 322 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
229 323
230 my $visibility = delete $o->{visibility} if exists $o->{visibility}; 324 $visibility = delete $o->{visibility} if exists $o->{visibility};
231 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap}; 325 $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
232 326
233 my $anim = delete $o->{anim}; 327 my $anim = delete $o->{anim};
234 328
235 if ($anim) { 329 if ($anim) {
330 # possibly add $ext to the animation name to avoid
331 # the need to specify archnames for all parts
332 # of a multipart archetype.
236 $o->{animation} = "$o->{_name}"; 333 $o->{animation} = "$o->{_name}";
334 my $facings = 1;
335 my @frames;
237 336
238 for (@$anim) { 337 for (@$anim) {
239 $_ .= $ext unless /^facings\s|^blank.x11$|^empty.x11$/; 338 if (/^facings\s+(\d+)/) {
339 $facings = $1*1;
340 } elsif (/^blank.x11$|^empty.x11$/) {
341 push @frames, $_;
342 } else {
343 push @frames, "$_$ext";
344 }
240 } 345 }
241 346
242 $ANIM{"$o->{_name}$ext"} = 347 $ANIMINFO{$o->{animation}} = {
243 join "", map "$_\n", 348 facings => $facings,
244 "anim $o->{_name}", 349 frames => \@frames,
245 @$anim, 350 };
246 "mina";
247 } 351 }
248 352
249 for my $face ($o->{face} || (), @{$anim || []}) { 353 for my $face ($o->{face} || (), @{$anim || []}) {
250 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/; 354 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/;
251 355
254 $info->{visibility} = $visibility if defined $visibility; 358 $info->{visibility} = $visibility if defined $visibility;
255 $info->{magicmap} = $magicmap if defined $magicmap; 359 $info->{magicmap} = $magicmap if defined $magicmap;
256 } 360 }
257 361
258 if (my $smooth = delete $o->{smoothface}) { 362 if (my $smooth = delete $o->{smoothface}) {
259 $SMOOTH .= "$smooth\n"; 363 my %kv =split /\s+/, $smooth;
364 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
365 while (my ($face, $smooth) = each %kv) {
366 $FACEINFO{$face}{smooth} = $smooth;
367 $FACEINFO{$face}{smoothlevel} = $level;
368 }
260 } 369 }
261 } 370 }
262 } 371 }
263 } 372 }
264 } 373 }
276 385
277 $TRS .= $trs; 386 $TRS .= $trs;
278 } 387 }
279 } 388 }
280 389
390 sub process_res {
391 while (@res) {
392 my ($dir, $file) = @{pop @res};
393
394 my $data;
395 aio_load "$dir/$file", $data;
396
397 $file =~ s/\.res$//;
398 $file =~ /\.([^.]+)$/
399 or next;
400
401 my $type = $1;
402
403 substr $dir, 0, 1 + length $PATH, "";
404
405 $RESOURCE{"$dir/$file"} = {
406 type => $1,
407 copyright => "", # TODO
408 data => $data,
409 chksum => Digest::MD5::md5 $data,
410 };
411 }
412 }
413
281 sub find_files; 414 sub find_files;
282 sub find_files { 415 sub find_files {
283 my ($path) = @_; 416 my ($path) = @_;
284 417
285 IO::AIO::aioreq_pri 4; 418 IO::AIO::aioreq_pri 4;
289 find_files "$path/$_" 422 find_files "$path/$_"
290 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 423 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
291 424
292 for my $file (@$nondirs) { 425 for my $file (@$nondirs) {
293 if ($file =~ /\.png$/) { 426 if ($file =~ /\.png$/) {
294 push @png, "$path/$file"; 427 push @png, ["$path/$file", 0];
295 } elsif ($file =~ /\.trs$/) { 428 } elsif ($file =~ /\.trs$/) {
296 push @trs, [$path, $file]; 429 push @trs, [$path, $file];
297 } elsif ($file =~ /\.arc$/) { 430 } elsif ($file =~ /\.arc$/) {
298 push @arc, [$path, $file]; 431 push @arc, [$path, $file];
432 } elsif ($file =~ /\.(ogg|res)$/) {
433 push @res, [$path, $file];
299 } else { 434 } else {
300 warn "ignoring $path/$file\n" if $VERBOSE >= 2; 435 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
301 } 436 }
302 } 437 }
303 }; 438 };
304 } 439 }
305 440
306 sub inst_arch($) { 441 sub inst_arch($) {
307 my (undef, $path) = @_; 442 my (undef, $path) = @_;
308 443
444 $PATH = $path;
445
446 print "\n",
309 print "installing '$path' to '$DATADIR'\n\n"; 447 "Installing '$path' to '$DATADIR'\n",
448 "\n",
449 "This can take a long time if you run this\n",
450 "for the first time or do not use --cache.\n",
451 "\n",
452 "Unless you run verbosely, all following warning\n",
453 "or error messages indicate serious problems.\n",
454 "\n";
310 455
311 if (!-d "$path/treasures") { 456 if (!-d "$path/treasures") {
312 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 457 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
313 exit 1 unless $FORCE; 458 exit 1 unless $FORCE;
314 } 459 }
315 460
316 find_files $path; 461 find_files $path;
317 IO::AIO::flush; 462 IO::AIO::flush;
318 463
319 $_->join for ( 464 $_->join for (
320 (async \&process_png), (async \&process_png), 465 # four png crunchers work fine for my 2x smp machine
466 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png),
321 (async \&process_trs), (async \&process_trs), 467 (async \&process_trs), (async \&process_trs),
322 (async \&process_arc), (async \&process_arc), 468 (async \&process_arc), (async \&process_arc),
469 (async \&process_res), (async \&process_res),
323 ); 470 );
324 471
325 { 472 {
326 open my $fh, ">:utf8", "$DATADIR/animations~" 473 # remove path prefix from editor_folder
327 or die "$DATADIR/animations~: $!"; 474 substr $_->{editor_folder}, 0, 1 + length $path, ""
328 print $fh join "", map $ANIM{$_}, sort keys %ANIM 475 for values %ARC;
476
477 # resolve inherit
478 while () {
479 my $progress;
480 my $loop;
481
482 for my $o (values %ARC) {
483 if (my $other = $o->{inherit}) {
484 if (my $s = $ARC{$other}) {
485 if ($s->{inherit}) {
486 $loop = $s;
487 } else {
488 delete $o->{inherit};
489 my %s = %$s;
490 delete @s{qw(_name more name name_pl)};
491 %$o = ( %s, %$o );
492 ++$progress;
493 }
494 } else {
495 warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
496 delete $ARC{$o->{_name}};
497 }
498 }
499 }
500
501 unless ($progress) {
502 die "inheritance loop detected starting at archetype '$loop->{_name}', aborting.\n"
503 if $loop;
504
505 last;
506 }
329 } 507 }
330 508
331 { 509 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
510 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
511
332 open my $fh, ">:utf8", "$DATADIR/archetypes~" 512 open my $fh, ">:utf8", "$DATADIR/archetypes~"
333 or die "$DATADIR/archetypes~: $!"; 513 or die "$DATADIR/archetypes~: $!";
334 substr $_->{editor_folder}, 0, 1 + length $path, "" for @ARC; 514 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
335 print $fh Crossfire::archlist_to_string \@ARC;
336 }
337
338 {
339 open my $fh, ">:utf8", "$DATADIR/smooth~"
340 or die "$DATADIR/smooth~: $!";
341 print $fh $SMOOTH;
342 } 515 }
343 516
344 { 517 {
345 open my $fh, ">:utf8", "$DATADIR/treasures~" 518 open my $fh, ">:utf8", "$DATADIR/treasures~"
346 or die "$DATADIR/treasures~: $!"; 519 or die "$DATADIR/treasures~: $!";
347 print $fh $TRS; 520 print $fh $TRS;
348 } 521 }
349 522
350 { 523 {
351 while (my ($k, $v) = each %FACEINFO) { 524 while (my ($k, $v) = each %FACEINFO) {
352 $v->{data32} ||= delete $PNG32{$k};
353 }
354
355 while (my ($k, $v) = each %FACEINFO) {
356 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n"; 525 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
526 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
527
528 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
529 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
357 530
358 $v->{chksum32} = Digest::MD5::md5 $v->{data32}; 531 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
532 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
533
534 if (my $magicmap = $v->{magicmap}) {
535 $magicmap =~ y/A-Z_\-/a-z/d;
536 $v->{magicmap} = $COLOR{$magicmap};
359 } 537 }
538 }
360 539
361 open my $fh, ">:perlio", "$DATADIR/faces~" 540 open my $fh, ">:perlio", "$DATADIR/facedata~"
362 or die "$DATADIR/faces~: $!"; 541 or die "$DATADIR/facedata~: $!";
363 542
364 print $fh Storable::nfreeze \%FACEINFO; 543 print $fh freeze {
544 version => 2,
545 faceinfo => \%FACEINFO,
546 animinfo => \%ANIMINFO,
547 resource => \%RESOURCE,
365 } 548 };
549 }
366 550
367 for (qw(archetypes faces animations treasures smooth)) { 551 for (qw(archetypes facedata treasures)) {
368 chmod 0644, "$DATADIR/$_~"; 552 chmod 0644, "$DATADIR/$_~";
369 rename "$DATADIR/$_~", "$DATADIR/$_"; 553 rename "$DATADIR/$_~", "$DATADIR/$_"
554 or die "$DATADIR/$_: $!";
370 } 555 }
556
557 print "archetype data installed successfully.\n";
371 } 558 }
372} 559}
373 560
374Getopt::Long::Configure ("bundling", "no_ignore_case"); 561Getopt::Long::Configure ("bundling", "no_ignore_case");
375GetOptions ( 562GetOptions (

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines