aboutsummaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-19 10:48:07 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-19 10:48:07 +1200
commit91b08ae3e026e812e2be576b9cd61121ea813c16 (patch)
treea4d7cb551a99565eed7ccee977a4b9abf262463f /dist
parentMerge branch 'hotfix/v1.34.3' (diff)
parentBump VERSION (diff)
downloaddotfiles-91b08ae3e026e812e2be576b9cd61121ea813c16.tar.gz
dotfiles-91b08ae3e026e812e2be576b9cd61121ea813c16.zip
Merge branch 'release/v1.35.0'v1.35.0
* release/v1.35.0: Bump VERSION Add compatible/version guard to syntax after files Remove line continuations from VimL indent after Make /usr/include 'path' setting hinge on +unix Set UTF-8 default 'encoding' Interfere more specifically with 'path' Add to 'backupskip' one element at a time Amend a vimrc comment Sort .gitignore Anchor paths in .gitignore Remove dist/vim-plugin.sh Remove vim/dist from .gitignore Use full command name in CentOS system Vim revert Clarify perl.vim ftdetect comment a bit Remove silent! prefix from Debian 'rtp' revert Only add uppercase 'wildignore' if it matters Remove double-trail-slash from 'backupdir' Make 'backupskip' with Unix paths depend on +unix
Diffstat (limited to 'dist')
-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