diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2023-10-14 17:42:15 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2023-10-14 18:42:28 -0600 |
commit | b7f94f7ae3f7ad9af96e27d6b6b9690a56ca5355 (patch) | |
tree | de42e83f8f61ecef2abcb0a8200ef3ecd6f3e745 /bin | |
parent | 52d63ae1bf613a707e630808b8307a8b46653475 (diff) |
poolify: Add a gross hack to get things working again
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/poolify | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/poolify b/bin/poolify index 6f9a109..e256157 100755 --- a/bin/poolify +++ b/bin/poolify @@ -71,6 +71,10 @@ main() { echo '# Pass 2' while read -r time url; do + if [[ "$url" == */2.0-Update/* ]]; then + # Gross hack + continue + fi name="${url##*/Public/}" dirpart="${name%/*}" filepart="${name##*/}" |