From 2ffe2df9c01e8da762e8a7ba09fb8c78317858d0 Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Sat, 18 Aug 2018 09:52:37 +0100 Subject: [PATCH] update_binary-addons: use full rev --- tools/mkpkg/update_binary-addons | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/mkpkg/update_binary-addons b/tools/mkpkg/update_binary-addons index 460ad042eb..aa0900fe7e 100755 --- a/tools/mkpkg/update_binary-addons +++ b/tools/mkpkg/update_binary-addons @@ -2,6 +2,7 @@ # SPDX-License-Identifier: GPL-2.0-or-later # Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv) +# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) if [ -z "$1" ]; then echo "Usage: $0 " @@ -46,7 +47,7 @@ git_clone() { resolve_hash() { if [ -d "$1" ] ; then cd "$1" - git rev-parse --short $2 2>/dev/null + git rev-parse $2 2>/dev/null fi }