Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
scripts: Add COB caching script
cloudhead committed 2 years ago
commit d16ae3edc9c96f2d2241dfe92dcf77f8d60beaf3
parent 09f2befa58dc6057e052904b6947bdd17d3b0553
1 file changed +11 -0
added scripts/cache-cobs
@@ -0,0 +1,11 @@
+
#!/bin/sh
+

+
DIRECTORY="$(rad path)/storage"
+

+
for repo in "$DIRECTORY"/*; do
+
  repo="rad:$(basename $repo)"
+
  echo "Processing $repo.."
+
  rad issue cache --repo "$repo"
+
  rad patch cache --repo "$repo"
+
  echo
+
done