diff --git a/Makefile b/Makefile index bc1df2fc..7852b10b 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/repoid.pl b/repoid.pl index b0484700..1a84ffcf 100755 --- a/repoid.pl +++ b/repoid.pl @@ -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;