summaryrefslogtreecommitdiff
path: root/lib/sbin
diff options
context:
space:
mode:
authorknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-05-16 16:19:07 +0000
committerknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-05-16 16:19:07 +0000
commitfab6d3734a4e2e6782750b551339f0b8f0fa7c91 (patch)
tree459cc4ea89eb80c0fd24e8b2dfe737f8e952f463 /lib/sbin
parente846c02484c5c3c9325d61d979ad16ee1133c81b (diff)
remove bashisms, resolves ticket #901
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4824 17b73243-c579-4c4c-a9d2-2d5706c11dac
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..."