From 6bd6a3a2657929ad0580c44456368a1d35adcb21 Mon Sep 17 00:00:00 2001 From: MunyDev Date: Mon, 12 Aug 2024 17:03:13 -0400 Subject: [PATCH] added some fixes and checks --- Makefile | 1 + get_original_data.sh | 5 +++++ make_out.sh | 4 ++-- setup_venv.sh | 3 +++ 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 setup_venv.sh diff --git a/Makefile b/Makefile index 9ad20d1..7d8dac0 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ setup-venv: python3 -m venv .venv + bash setup_venv.sh exit setup-python: mkdir -p gen/python diff --git a/get_original_data.sh b/get_original_data.sh index f6f1cc7..f7495ae 100755 --- a/get_original_data.sh +++ b/get_original_data.sh @@ -1,6 +1,11 @@ #!/bin/bash echo This script may be removed or disabled later with discretion of google. +if [ ! -d "$HOME"/.config/google-chrome/PKIMetadata ] +then + google-chrome chrome://components &> /dev/null & + exit 0 +fi # Search directory for versions HIGHESTVERSIONAPPARENTLY=$(find "$HOME"/.config/google-chrome/PKIMetadata/ -maxdepth 1 -mindepth 1 -type d| head -n 1) diff --git a/make_out.sh b/make_out.sh index 553d38c..4c1dfd1 100755 --- a/make_out.sh +++ b/make_out.sh @@ -11,7 +11,7 @@ rm -rvf "${SCRIPT_DIR}"/out mkdir "${SCRIPT_DIR}"/out mkdir -p "${SCRIPT_DIR}"/out/PKIMetadata/2000/. cp -rvf "${SCRIPT_DIR}"/original/PKIMetadata/2000/. "${SCRIPT_DIR}"/out/PKIMetadata/2000 -rm -rvf "${SCRIPT_DIR}"out/PKIMetadata/2000/_metadata # verified contents not necessary +rm -rvf "${SCRIPT_DIR}"/out/PKIMetadata/2000/_metadata # verified contents not necessary rm -rvf "${SCRIPT_DIR}out/PKIMetadata/2000/"*.fingerprint python3 ./src/root_store_gen/generate_new_pbs.py "${SCRIPT_DIR}/original/PKIMetadata/2000/crs.pb" "$@" "${SCRIPT_DIR}/out/PKIMetadata/2000/crs.pb" # Modify version in manifest @@ -26,5 +26,5 @@ dat = Path.read_text(mjs) x = json.loads(dat) x['version'] = "2000" print(json.dumps(x)) -mjs.write_text(json.dumps(x)) +newfile.write_text(json.dumps(x)) EOF \ No newline at end of file diff --git a/setup_venv.sh b/setup_venv.sh new file mode 100644 index 0000000..d7160cc --- /dev/null +++ b/setup_venv.sh @@ -0,0 +1,3 @@ +#!/bin/bash +source ./.venv/bin/activate +pip3 install protobuf \ No newline at end of file