From fab6d3734a4e2e6782750b551339f0b8f0fa7c91 Mon Sep 17 00:00:00 2001 From: knarf Date: Wed, 16 May 2012 16:19:07 +0000 Subject: remove bashisms, resolves ticket #901 git-svn-id: http://svn.cactuscode.org/flesh/trunk@4824 17b73243-c579-4c4c-a9d2-2d5706c11dac --- lib/sbin/ArrangementDoc | 2 +- lib/sbin/ThornDoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') 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..." -- cgit v1.2.3