rename dev-camsync to dev-camtool

Change-Id: Ic1681fa95cadc212c2e1ced05d2b01afea98d8ea
This commit is contained in:
Brad Fitzpatrick 2013-03-24 21:26:56 -07:00
parent 1148a51b09
commit c35c4ff233
2 changed files with 11 additions and 11 deletions

View File

@ -1,11 +0,0 @@
#!/usr/bin/perl
use strict;
use FindBin qw($Bin);
use Getopt::Long;
require "$Bin/misc/devlib.pl";
my $camsync = build_bin("./cmd/camsync");
exec($camsync, "--verbose", "--src=http://localhost:3179/bs", "--srcpassword=pass3179", @ARGV);
die "Failed to exec camsync.";

11
dev-camtool Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/perl
use strict;
use FindBin qw($Bin);
use Getopt::Long;
require "$Bin/misc/devlib.pl";
my $tool = build_bin("./cmd/camtool");
exec($tool, @ARGV);
die "Failed to exec camtool.";