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:
commit
0d5ff860ac
@ -10,6 +10,10 @@ then
|
|||||||
fi
|
fi
|
||||||
# Search directory for versions
|
# Search directory for versions
|
||||||
HIGHESTVERSIONAPPARENTLY=$(find "$HOME/.config/$CHROME/PKIMetadata/" -maxdepth 1 -mindepth 1 -type d| head -n 1)
|
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
|
#Let the user know what version we are on
|
||||||
echo "$HIGHESTVERSIONAPPARENTLY"
|
echo "$HIGHESTVERSIONAPPARENTLY"
|
||||||
@ -18,7 +22,12 @@ echo "$HIGHESTVERSIONAPPARENTLY"
|
|||||||
mkdir -p original/PKIMetadata/2000
|
mkdir -p original/PKIMetadata/2000
|
||||||
|
|
||||||
#Copy latest version as base (idk if this is reliable)
|
#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
|
#Remove metadata and fingerprint(just sha256 of manifest) to be accepted
|
||||||
rm -rvf original/PKIMetadata/2000/_metadata
|
rm -rvf original/PKIMetadata/2000/_metadata
|
||||||
|
Loading…
x
Reference in New Issue
Block a user