From a624b9a4722f5ed8f33fa3826a6a0ccf547e6d71 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Sat, 25 Jul 2020 00:49:13 +0800 Subject: [PATCH] Update pv fetching tool. --- tools/publish.sh | 2 -- tools/pv.sh | 9 +++++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/tools/publish.sh b/tools/publish.sh index 4917d9f..a794f75 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -29,8 +29,6 @@ check_status() { update_files() { bash _scripts/sh/create_pages.sh bash _scripts/sh/dump_lastmod.sh - - find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf } diff --git a/tools/pv.sh b/tools/pv.sh index 98f73ba..cd45992 100755 --- a/tools/pv.sh +++ b/tools/pv.sh @@ -16,10 +16,11 @@ set -eu WORK_DIR=$(dirname $(dirname $(realpath "$0"))) -URL_FILE=${WORK_DIR}/assets/data/proxy.json -PV_CACHE=${WORK_DIR}/assets/data/pageviews.json +URL_FILE=${WORK_DIR}/_config.yml +PV_CACHE=${WORK_DIR}/assets/js/data/pageviews.json - -PROXY_URL=$(jq -r '.proxyUrl' $URL_FILE) +PROXY_URL=$(grep "proxy_endpoint:" $URL_FILE | sed "s/.*: '//g;s/'.*//") wget $PROXY_URL -O $PV_CACHE + +echo "ls $PV_CACHE" \ No newline at end of file