| SVL documentation | Contained in the SVL distribution. |
SVL::Command::Unshare - Stop sharing a path
svl unshare //trunk/Acme-Colour/
None.
| SVL documentation | Contained in the SVL distribution. |
package SVL::Command::Unshare; use strict; use warnings; use Path::Class; use base qw(SVL::Command); sub run { my($self, $target) = @_; die "No target" unless $target; my $share = SVL::Sharing->new(file($self->svkpath, 'svl-share'), $self->xd); $share->delete($target); } 1;