summaryrefslogtreecommitdiff
path: root/scripts/sd-all
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/sd-all')
-rwxr-xr-xscripts/sd-all18
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/sd-all b/scripts/sd-all
deleted file mode 100755
index 36c4514..0000000
--- a/scripts/sd-all
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-set -e
-
-cd $HOME
-
-awk '
- NF == 0 { next }
- $1 ~ /#/ { next }
- { print $1 }
-' "$HOME/.sd-publish-all.conf" |
-while read repo
-do
- export SD_REPO="$repo"
- echo "SD repo: $repo"
- sd "$@" || exit 1
- echo
-done