use stable-3 branch (instead of stable-3.4-fixes)

This commit is contained in:
Dietmar Maurer 2015-04-28 06:25:43 +02:00
parent 9bb4956ef2
commit 53a67dc5e5
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ DESTDIR=
SUBDIRS = aplinfo PVE bin www po
ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
GITVERSION:=$(shell cat .git/refs/heads/stable-3.4-fixes)
GITVERSION:=$(shell cat .git/refs/heads/stable-3)
DEB=${PACKAGE}_${VERSION}-${PACKAGERELEASE}_${ARCH}.deb

View File

@ -11,8 +11,8 @@ use PVE::Tools qw(run_command);
my $gitdir = shift;
die "no repository" if !$gitdir;
my $path = "$gitdir/refs/heads/stable-3.4-fixes";
die "master branch does not exists" if ! -f $path;
my $path = "$gitdir/refs/heads/stable-3";
die "stable-3 branch does not exists" if ! -f $path;
my $arg1 = shift;