mirror of https://github.com/perkeep/perkeep.git
12 lines
192 B
Plaintext
12 lines
192 B
Plaintext
|
#!/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.";
|
||
|
|