aboutsummaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
Diffstat (limited to 'check')
-rw-r--r--check/login-shell.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/check/login-shell.sh b/check/login-shell.sh
new file mode 100644
index 00000000..20327b94
--- /dev/null
+++ b/check/login-shell.sh
@@ -0,0 +1,12 @@
+target=check-sh
+case ${SHELL##*/} in
+ bash)
+ target=check-bash ;;
+ ksh|ksh88|ksh93|mksh|pdksh)
+ target=check-ksh ;;
+ yash)
+ target=check-yash ;;
+ zsh)
+ target=check-zsh ;;
+esac
+make "$target"