aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-18 13:48:30 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-18 13:48:30 +1200
commit521fd381383498a66151397820ffd2775d01cb0c (patch)
treee30217fb4d82e43c7a7f038a2f8b6712196fda7e
parentRemove vim/dist from .gitignore (diff)
downloaddotfiles-521fd381383498a66151397820ffd2775d01cb0c.tar.gz
dotfiles-521fd381383498a66151397820ffd2775d01cb0c.zip
Remove dist/vim-plugin.sh
No longer needed.
-rw-r--r--dist/vim-plugin.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/dist/vim-plugin.sh b/dist/vim-plugin.sh
deleted file mode 100644
index 0f549be4..00000000
--- a/dist/vim-plugin.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-ver=$(awk -Fv 'NR<2&&$0=$NF' VERSION) || exit
-mkdir -p -- vim/dist || exit
-cd -- vim/dist || exit
-for pn ; do
- dn=vim-$(printf '%s' "$pn"|sed 's/_/-/g')-$ver
- mkdir -p -- "$pn"
- for fn in ../*/"$pn".txt ../*/"$pn".vim ; do
- [ -e "$fn" ] || continue
- sdn=$fn
- sdn=${sdn#../}
- sdn=${sdn%/*}
- mkdir -p -- "$pn"/"$sdn"
- cp -- "$fn" "$pn"/"$sdn"
- done
- tar c "$pn" | gzip > "$dn".tar.gz || exit
- rm -r -- "$pn"
-done