From c35c4ff233727c6785fddb6a7b240c11f07bb1ff Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sun, 24 Mar 2013 21:26:56 -0700 Subject: [PATCH] rename dev-camsync to dev-camtool Change-Id: Ic1681fa95cadc212c2e1ced05d2b01afea98d8ea --- dev-camsync | 11 ----------- dev-camtool | 11 +++++++++++ 2 files changed, 11 insertions(+), 11 deletions(-) delete mode 100755 dev-camsync create mode 100755 dev-camtool diff --git a/dev-camsync b/dev-camsync deleted file mode 100755 index bbee57def..000000000 --- a/dev-camsync +++ /dev/null @@ -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."; - diff --git a/dev-camtool b/dev-camtool new file mode 100755 index 000000000..dd08de1fe --- /dev/null +++ b/dev-camtool @@ -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."; +