aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-10 11:17:37 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-10 11:17:37 +1200
commitfc7ccd48bec1bd6ea8201533977e154ae4d94aaa (patch)
tree9335a2d5f5832741f5a97e491620e199e7569144 /test
parentLimit prompt setup to OpenBSD pdksh (diff)
downloaddotfiles-fc7ccd48bec1bd6ea8201533977e154ae4d94aaa.tar.gz
dotfiles-fc7ccd48bec1bd6ea8201533977e154ae4d94aaa.zip
Name/point pdksh files specifically
This frees up space to implement actual ksh88/ksh93 files specifically in future, as pdksh's feature set differs considerably
Diffstat (limited to 'test')
-rwxr-xr-xtest/pdksh8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/pdksh b/test/pdksh
index 5ebd556a..fd1d55b7 100755
--- a/test/pdksh
+++ b/test/pdksh
@@ -1,6 +1,6 @@
#!/bin/sh
-for ksh in ksh/* ; do
- [ -f "$ksh" ] || continue
- ksh -n "$ksh" || exit
+for pdksh in pdksh/* pdksh/pdkshrc.d/* ; do
+ [ -f "$pdksh" ] || continue
+ ksh -n "$pdksh" || exit
done
-printf 'All ksh(1) scripts parsed successfully.\n'
+printf 'All pdksh scripts parsed successfully.\n'