home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
Chip_2004-04_cd1.bin
/
opsys
/
macos
/
safari
/
safari.dmg
/
Safari_1.2.pkg
/
Contents
/
Resources
/
preflight
< prev
next >
Wrap
Text File
|
2003-12-11
|
330b
|
16 lines
#!/usr/bin/perl
$0 =~ m/.*\/(.*)$/;
my $stage = $1;
my $actionsDir = $ARGV[0] . "/Contents/Resources/" . $stage . "_actions/";
my $actionResult = 0;
foreach my $action (`/bin/ls \"$actionsDir\"`) {
chomp($action);
system($actionsDir . $action, $ARGV[0], $ARGV[1], $ARGV[2], $ARGV[3]);
$actionResult = ($? << 8);
}
exit(0);