Update launcher script with handing of return value

This commit is contained in:
mdiluzio 2015-01-10 17:04:55 +00:00
parent 96f5c08c14
commit 96153f8c60

View file

@ -29,14 +29,16 @@ print_usage() if ( @ARGV < 1 or
'map=s' => \$map,
) );
# Verify we have the right parameters
print "Cannot run as both client and server\n" and exit if $client and $server;
print "Client requires hostname\n" and exit if $client and not $host;
print "Server requires mapfile\n" and exit if $server and not $map;
print "Running locally requires mapfile\n" and exit if not $server and not $client and not $map;
# Run client, server or local
system("ttrts-client $host") if $client and $host;
system("ttrts-server $map") if $server and $map;
system("ttrts-local $map") if not $server and not $client and $map;
my $res = -1;
$res = system("ttrts-client $host") if $client and $host;
$res = system("ttrts-server $map") if $server and $map;
$res = system("ttrts-local $map") if not $server and not $client and $map;
print "Success!\n";
return $res