Merge pull request #1 from EnterTheVoid-x86/main

stop get_original_data.sh from copying the entirety of the root drive
This commit is contained in:
MunyDev 2025-01-25 19:21:05 -05:00 committed by GitHub
commit 0d5ff860ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,10 @@ then
fi
# Search directory for versions
HIGHESTVERSIONAPPARENTLY=$(find "$HOME/.config/$CHROME/PKIMetadata/" -maxdepth 1 -mindepth 1 -type d| head -n 1)
if [ -z ${HIGHESTVERSIONAPPARENTLY} ]; then
echo "Failed to find PKIMetadata directory"
exit 1
fi
#Let the user know what version we are on
echo "$HIGHESTVERSIONAPPARENTLY"
@ -18,7 +22,12 @@ echo "$HIGHESTVERSIONAPPARENTLY"
mkdir -p original/PKIMetadata/2000
#Copy latest version as base (idk if this is reliable)
cp -rvf "$HIGHESTVERSIONAPPARENTLY"/. original/PKIMetadata/2000
if [ "$HIGHESTVERSIONAPPARENTLY" != "" ]; then
cp -rvf "$HIGHESTVERSIONAPPARENTLY"/. original/PKIMetadata/2000
else
echo "Variable HIGHESTVERSIONAPPARENTLY returned empty, failing."
exit 1
fi
#Remove metadata and fingerprint(just sha256 of manifest) to be accepted
rm -rvf original/PKIMetadata/2000/_metadata