Don't rename dpkgs, they do not like that
git-svn-id: http://repo.ham.fi/svn/aprsc/trunk@757 3ce903b1-3385-4e86-93cd-f9a4a239f7ac
This commit is contained in:
parent
e99cab345a
commit
12ea772c13
|
|
@ -120,9 +120,9 @@ sub vm_build($$$)
|
|||
$dist =~ s/-[^\-]+$//;
|
||||
|
||||
foreach my $f (@products) {
|
||||
my $of = $f;
|
||||
$of =~ s/\.(deb|changes)/_$dist.$1/;
|
||||
rename("$dir_build_down/$f", "$dir_build_out/$of") || die "Failed to rename $f to $of: $!\n";;
|
||||
my $of = "$dir_build_out/$dist/$f";
|
||||
mkdir("$dir_build_out/$dist");
|
||||
rename("$dir_build_down/$f", $of) || die "Failed to rename $f to $of: $!\n";;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue