From c1214939efb739ee3789f7d38f728bd6d94957cb Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Thu, 28 Dec 2023 15:38:31 -0500 Subject: [PATCH] Add requirements to scripts/update_oauth_resources.sh --- scripts/update_oauth_resources.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/update_oauth_resources.sh b/scripts/update_oauth_resources.sh index 5a3ed6d..aa43b9c 100755 --- a/scripts/update_oauth_resources.sh +++ b/scripts/update_oauth_resources.sh @@ -1,5 +1,10 @@ #!/bin/bash +# Requirements +# - curl +# - rg +# - jq + # Fetch iOS app versions ios_version_list=$(curl -s "https://ipaarchive.com/app/usa/1064216828" | rg "(20\d{2}\.\d+.\d+) / (\d+)" --only-matching -r "Version \$1/Build \$2" | sort | uniq)