aboutsummaryrefslogtreecommitdiff
path: root/.github/checksum.sh
diff options
context:
space:
mode:
Diffstat (limited to '.github/checksum.sh')
-rwxr-xr-x.github/checksum.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/checksum.sh b/.github/checksum.sh
deleted file mode 100755
index a1c7791a..00000000
--- a/.github/checksum.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env bash
-RESULT_FILE=$1
-
-if [ -f $RESULT_FILE ]; then
- rm $RESULT_FILE
-fi
-touch $RESULT_FILE
-
-checksum_file() {
- echo $(sha256sum $1 | awk '{print $1}')
-}
-
-FILES=()
-while read -r -d ''; do
- FILES+=("$REPLY")
-done < <(find . -type f \( -name "build.gradle*" -o -name "dependencies.gradle" -o -name "gradle-wrapper.properties" \) -print0)
-
-# Loop through files and append MD5 to result file
-for FILE in ${FILES[@]}; do
- echo $(checksum_file $FILE) >> $RESULT_FILE
-done
-# Now sort the file so that it is
-sort $RESULT_FILE -o $RESULT_FILE