From 787b30b24b67328a6649e36a6000abd6c9fed60e Mon Sep 17 00:00:00 2001 From: Ian Leonard Date: Thu, 16 Mar 2023 15:51:32 +0000 Subject: [PATCH] busybox: createlog: no githash stored in /etc/issue Signed-off-by: Ian Leonard --- packages/sysutils/busybox/scripts/createlog | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/sysutils/busybox/scripts/createlog b/packages/sysutils/busybox/scripts/createlog index 93efd333a8..f85178ca4d 100755 --- a/packages/sysutils/busybox/scripts/createlog +++ b/packages/sysutils/busybox/scripts/createlog @@ -10,7 +10,6 @@ DATE=$(date -u +%Y-%m-%d-%H.%M.%S) BASEDIR=$(mktemp -d) LOGDIR="log-$DATE" RELEASE=$(cat /etc/release) -GIT=$(grep git < /etc/issue) getlog_cmd() { if command -v $1 >/dev/null; then @@ -18,7 +17,6 @@ getlog_cmd() { echo "################################################################################" echo "# ... output of $@" echo "# LibreELEC release: $RELEASE" - echo "# $GIT" echo "################################################################################" } >> $BASEDIR/$LOGDIR/$LOGFILE $@ >> $BASEDIR/$LOGDIR/$LOGFILE 2>/dev/null