[Bps-public-commit] r10288 - bpsbuilder/BPB/lib/BPB/Backend
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Fri Jan 11 09:43:13 EST 2008
Author: sunnavy
Date: Fri Jan 11 09:43:13 2008
New Revision: 10288
Modified:
bpsbuilder/BPB/lib/BPB/Backend/SVK.pm
bpsbuilder/BPB/lib/BPB/Backend/SVN.pm
Log:
bpb-script-wrapper should also be executable
Modified: bpsbuilder/BPB/lib/BPB/Backend/SVK.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Backend/SVK.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Backend/SVK.pm Fri Jan 11 09:43:13 2008
@@ -53,11 +53,13 @@
_initialize => 1,
comment => 'created project',
);
- $self->propset(
- path => 'bin/bpb-builder',
- type => 'svn:executable',
- value => '*'
- );
+ for ( 'bin/bpb-builder', 'etc/bpb-script-wrapper' ) {
+ $self->propset(
+ path => $_,
+ type => 'svn:executable',
+ value => '*'
+ );
+ }
}
=head2 import
Modified: bpsbuilder/BPB/lib/BPB/Backend/SVN.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Backend/SVN.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Backend/SVN.pm Fri Jan 11 09:43:13 2008
@@ -53,11 +53,14 @@
comment => 'create project',
_initialize => 1,
);
- $self->propset(
- path => 'bin/bpb-builder',
- type => 'svn:executable',
- value => '*'
- );
+
+ for ( 'bin/bpb-builder', 'etc/bpb-script-wrapper' ) {
+ $self->propset(
+ path => $_,
+ type => 'svn:executable',
+ value => '*'
+ );
+ }
}
=head2 import
More information about the Bps-public-commit
mailing list