| Newsgroups |
gmane.comp.cms.gnue.cvs |
| Message-ID |
<[email protected]> |
Author: reinhard
Date: 2009-04-03 04:50:54 -0500 (Fri, 03 Apr 2009)
New Revision: 29
Modified:
trunk/bin/form-acc
trunk/bin/form-cc
trunk/bin/load-demo
trunk/bin/server
trunk/bin/setupdb
Log:
Undid last change, type -t only works with bash anyway.
Modified: trunk/bin/form-acc
===================================================================
--- trunk/bin/form-acc 2009-04-03 09:36:03 UTC (rev 28)
+++ trunk/bin/form-acc 2009-04-03 09:50:54 UTC (rev 29)
@@ -1,7 +1,7 @@
-#!/bin/sh
+#!/bin/bash
# Prefer CVS versions if available
-if [ "`type -t gcvs`" = "file" ]; then
+if [ "`type -t gcvs`" == "file" ]; then
gnue_forms="gfcvs"
else
gnue_forms="gnue-forms"
Modified: trunk/bin/form-cc
===================================================================
--- trunk/bin/form-cc 2009-04-03 09:36:03 UTC (rev 28)
+++ trunk/bin/form-cc 2009-04-03 09:50:54 UTC (rev 29)
@@ -1,7 +1,7 @@
-#!/bin/sh
+#!/bin/bash
# Prefer CVS versions if available
-if [ "`type -t gcvs`" = "file" ]; then
+if [ "`type -t gcvs`" == "file" ]; then
gnue_forms="gfcvs"
else
gnue_forms="gnue-forms"
Modified: trunk/bin/load-demo
===================================================================
--- trunk/bin/load-demo 2009-04-03 09:36:03 UTC (rev 28)
+++ trunk/bin/load-demo 2009-04-03 09:50:54 UTC (rev 29)
@@ -1,7 +1,7 @@
-#!/bin/sh
+#!/bin/bash
# Prefer CVS versions if available
-if [ "`type -t gcvs`" = "file" ]; then
+if [ "`type -t gcvs`" == "file" ]; then
gnue_schema="gsscvs"
else
gnue_schema="gnue-schema"
Modified: trunk/bin/server
===================================================================
--- trunk/bin/server 2009-04-03 09:36:03 UTC (rev 28)
+++ trunk/bin/server 2009-04-03 09:50:54 UTC (rev 29)
@@ -1,7 +1,7 @@
-#!/bin/sh
+#!/bin/bash
# Prefer CVS versions if available
-if [ "`type -t gcvs`" = "file" ]; then
+if [ "`type -t gcvs`" == "file" ]; then
gnue_appserver="gacvs"
else
gnue_appserver="gnue-appserver"
Modified: trunk/bin/setupdb
===================================================================
--- trunk/bin/setupdb 2009-04-03 09:36:03 UTC (rev 28)
+++ trunk/bin/setupdb 2009-04-03 09:50:54 UTC (rev 29)
@@ -1,7 +1,7 @@
-#!/bin/sh
+#!/bin/bash
# Prefer CVS versions if available
-if [ "`type -t gcvs`" = "file" ]; then
+if [ "`type -t gcvs`" == "file" ]; then
python="gcvs"
gnue_schema="gsscvs"
else