From 53a67dc5e59c29a46277cf97ae47cf2bd04111cc Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Tue, 28 Apr 2015 06:25:43 +0200 Subject: [PATCH] use stable-3 branch (instead of stable-3.4-fixes) --- Makefile | 2 +- repoid.pl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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;