summaryrefslogtreecommitdiff
path: root/lib/sbin
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sbin')
-rwxr-xr-xlib/sbin/ArrangementDoc2
-rwxr-xr-xlib/sbin/ThornDoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbin/ArrangementDoc b/lib/sbin/ArrangementDoc
index 8345bb84..706eda7c 100755
--- a/lib/sbin/ArrangementDoc
+++ b/lib/sbin/ArrangementDoc
@@ -12,7 +12,7 @@ abspath=$PWD
for arr in `cd arrangements; echo *`; do
if test -d arrangements/$arr; then
- if test -z "$selection" || test "$arr" == "$selection"; then
+ if test -z "$selection" || test "$arr" = "$selection"; then
if test -e arrangements/$arr/doc/documentation.tex; then
echo " Processing arrangement $arr..."
diff --git a/lib/sbin/ThornDoc b/lib/sbin/ThornDoc
index 9f6ca172..eaaabff4 100755
--- a/lib/sbin/ThornDoc
+++ b/lib/sbin/ThornDoc
@@ -14,7 +14,7 @@ for arr in `cd arrangements; echo *`; do
if test -d arrangements/$arr; then
for th in `cd arrangements/$arr; echo *`; do
if test -d arrangements/$arr/$th; then
- if test -z "$selection" || test "$th" == "$selection"; then
+ if test -z "$selection" || test "$th" = "$selection"; then
if test -e arrangements/$arr/$th/doc/documentation.tex; then
echo " Processing thorn $arr/$th..."