From f853a89a1149cf0f082cda7cd8dc7af7e40d09ab Mon Sep 17 00:00:00 2001 From: Joe Corall Date: Thu, 9 Nov 2023 11:58:15 -0500 Subject: [PATCH] Make domain lib.lehigh.edu --- fixtures/domains.txt | 2 +- scripts/test.sh | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/fixtures/domains.txt b/fixtures/domains.txt index 00c4e06..19e2fe7 100644 --- a/fixtures/domains.txt +++ b/fixtures/domains.txt @@ -1 +1 @@ -lehigh.edu \ No newline at end of file +lib.lehigh.edu \ No newline at end of file diff --git a/scripts/test.sh b/scripts/test.sh index ecffd89..868dea0 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -8,8 +8,8 @@ echo "Checking domains in config return 200s" URLS=( "https://lts.lehigh.edu" "https://preserve.lehigh.edu" - "https://$RANDOM.lehigh.edu" - "https://$RANDOM.$RANDOM.lehigh.edu" + "https://$RANDOM.lib.lehigh.edu" + "https://$RANDOM.$RANDOM.lib.lehigh.edu" ) for URL in "${URLS[@]}"; do @@ -27,6 +27,8 @@ done echo "Checking domains not in config throw 404s" URLS=( "https://scholar.google.com" + "https://$RANDOM.lehigh.edu" + "https://$RANDOM.$RANDOM.lehigh.edu" ) for URL in "${URLS[@]}"; do echo "Checking $URL"