Abstract away from SVN...

This commit is contained in:
Sylvain Pion 2009-12-04 17:10:00 +00:00
parent e88730a2cb
commit 6adc693ac3
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ sub install_packages() {
my $package_full_path = File::Spec->catdir($package_comes_from, $package_name);
$dont_submit="$package_full_path/dont_submit";
chdir "$package_comes_from" or die;
@command = ('tar', '-cf', "$RELEASEDIR/temppack.tar", '--exclude=.svn');
@command = ('tar', '-cf', "$RELEASEDIR/temppack.tar", '--exclude-vcs');
if( -f $dont_submit ) {
@command = (@command, "--exclude-from=$dont_submit");
}