aboutsummaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-05-24 13:32:52 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-05-24 13:32:52 +1200
commit5a659f01a45e4c2cd1dafbc910c823415798dcea (patch)
tree81bc86a2be87f61ad3c0f7510e00864997dde731 /check
parentUpdate submodules (diff)
downloaddotfiles-5a659f01a45e4c2cd1dafbc910c823415798dcea.tar.gz
dotfiles-5a659f01a45e4c2cd1dafbc910c823415798dcea.zip
Remove Yash support
I never use it
Diffstat (limited to 'check')
-rw-r--r--check/login-shell.sh2
-rw-r--r--check/yash.sh5
2 files changed, 0 insertions, 7 deletions
diff --git a/check/login-shell.sh b/check/login-shell.sh
index 20327b94..2972d98d 100644
--- a/check/login-shell.sh
+++ b/check/login-shell.sh
@@ -4,8 +4,6 @@ case ${SHELL##*/} in
target=check-bash ;;
ksh|ksh88|ksh93|mksh|pdksh)
target=check-ksh ;;
- yash)
- target=check-yash ;;
zsh)
target=check-zsh ;;
esac
diff --git a/check/yash.sh b/check/yash.sh
deleted file mode 100644
index c8722f3d..00000000
--- a/check/yash.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-for yash in yash/* ; do
- [ -f "$yash" ] || continue
- yash -n "$yash" || exit
-done
-printf 'All yash scripts parsed successfully.\n'