[Bps-public-commit] r10286 - in bpsbuilder/BPB/lib/BPB: .
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Fri Jan 11 09:19:27 EST 2008
Author: sunnavy
Date: Fri Jan 11 09:19:26 2008
New Revision: 10286
Modified:
bpsbuilder/BPB/lib/BPB/Backend.pm
bpsbuilder/BPB/lib/BPB/Script/Build.pm
Log:
header should be #!/usr/bin/env perl; also some tiny changes
Modified: bpsbuilder/BPB/lib/BPB/Backend.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Backend.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Backend.pm Fri Jan 11 09:19:26 2008
@@ -53,7 +53,7 @@
;
our $BUILDER = <<'EOF'
-#!perl
+#!/usr/bin/env perl
use warnings;
use strict;
Modified: bpsbuilder/BPB/lib/BPB/Script/Build.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Script/Build.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Script/Build.pm Fri Jan 11 09:19:26 2008
@@ -6,7 +6,7 @@
use base qw/App::CLI::Command Class::Accessor::Fast/;
__PACKAGE__->mk_accessors(
- qw/config name install_base build_base skip skip_test/ );
+ qw/config name install_base build_base skip skip_test/);
use BPB;
@@ -16,7 +16,7 @@
'c|config=s' => 'config',
'i|install-base=s' => 'install_base',
'skip=s' => 'skip',
- 'skip-test' => 'skip_test',
+ 'skip-test' => 'skip_test',
);
}
@@ -56,6 +56,7 @@
--name(-n) specify the project's name
--install-base(-i) specify install base. overide the item in config.yml
--skip specify dists which'll be skipped
+ --skip-test specify whether to skip test
=head1 AUTHOR
More information about the Bps-public-commit
mailing list