Remove python dependency

This commit is contained in:
lw-everestlinux
2022-12-09 10:41:22 -05:00
parent a2b3ad34d4
commit fa1162a88c
5 changed files with 82 additions and 19 deletions

View File

@@ -27,7 +27,9 @@ get_pkg() {
int_check() {
if [ "$GLACIER_DO_INT_CHECK" = "true" ]; then
printf "$blue[ i ]$reset Checking package integrity...\n"
/usr/bin/glacier-integrity-check
mv *.checksum local_sum
sha256sum *.tar.gz > pkg_sum
/usr/bin/glacier-integrity-check local_sum pkg_sum
if [ "$?" != "0" ]; then
printf "$red[ $error ]$reset Integrity check failed.\n"
exit 1