From 0db1444eb0398f78b3ce88b05f997d21dcdaf0b7 Mon Sep 17 00:00:00 2001 From: Biktor Date: Thu, 27 Jan 2022 06:08:36 +0100 Subject: [PATCH] Remove get commit history script --- tools/fwupd/get_commit_history.sh | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 tools/fwupd/get_commit_history.sh diff --git a/tools/fwupd/get_commit_history.sh b/tools/fwupd/get_commit_history.sh deleted file mode 100755 index 44325ab..0000000 --- a/tools/fwupd/get_commit_history.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -BASE_PATH=`pwd` - - - -rm -rf target/temp ; \ -mkdir -p target/temp && \ - -git clone --bare https://github.com/Biktorgj/quectel_lk.git target/temp && \ -cd target/temp && \ -git log -n 5 --pretty=format:"%h%x09%an%x09%ad%x09%s" > ../changelog.log && \ - -cd $BASE_PATH && \ -rm -rf target/temp && \ -mkdir -p target/temp && \ - -git clone -b honister --bare https://github.com/Biktorgj/meta-qcom.git target/temp && \ -cd target/temp && \ -git log -n 5 --pretty=format:"%h%x09%an%x09%ad%x09%s" >> ../changelog.log && \ - -cd $BASE_PATH && \ -rm -rf target/temp && \ -mkdir -p target/temp && \ - -git clone --bare https://github.com/Biktorgj/quectel_eg25_kernel.git target/temp && \ -cd target/temp && \ -git log -n 5 --pretty=format:"%h%x09%an%x09%ad%x09%s" >> ../changelog.log && \ -rm -rf target/temp \ No newline at end of file