this repo has no description
1#!/bin/bash 2 3echo "Downloading haileyok/cocoon" 4git clone --depth 1 https://github.com/haileyok/cocoon reference-pds-hailey 5rm -rf reference-pds-hailey/.git 6 7echo "Downloading bluesky-social/atproto pds package" 8mkdir reference-pds-bsky 9cd reference-pds-bsky 10git init 11git remote add origin https://github.com/bluesky-social/atproto.git 12git config core.sparseCheckout true 13echo "packages/pds" >> .git/info/sparse-checkout 14git pull --depth 1 origin main 15mv packages/pds/* . 16rm -rf packages .git 17cd .. 18 19echo "Downloads complete!"