From b85d698da8c3f9bbb6308ed376bc1cec2498dc48 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Thu, 30 Apr 2020 21:43:21 +0200 Subject: [PATCH] Fix wrong repository URL in /etc/armbian-release Closes https://github.com/armbian/build/issues/1878 Signed-off-by: Igor Pecovnik --- lib/configuration.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/configuration.sh b/lib/configuration.sh index 93de651604..1b9eb29571 100644 --- a/lib/configuration.sh +++ b/lib/configuration.sh @@ -20,6 +20,7 @@ TZDATA=$(cat /etc/timezone) # Timezone for target is taken from host or defined USEALLCORES=yes # Use all CPU cores for compiling EXIT_PATCHING_ERROR="" # exit patching if failed [[ -z $HOST ]] && HOST="$BOARD" # set hostname to the board +cd ${SRC} ROOTFSCACHE_VERSION=23 CHROOT_CACHE_VERSION=7 BUILD_REPOSITORY_URL=$(git remote get-url $(git remote 2>/dev/null) 2>/dev/null)