Oops. Eddie did it already. -James
-----Original Message----- From: James Song Sent: Wednesday, January 19, 2005 4:26 PM To: Beehive Developers Subject: RE: Small fix for testDistro.sh Joe: I'll submit this for you. -James _____ From: Joe Pemberton Sent: Wednesday, January 19, 2005 4:05 PM To: [email protected] Subject: Small fix for testDistro.sh Hello, There is an sh script at beehive/trunk/test/testDistro.sh that contains what looks like windows syntax to invoke ant (using the "call" command and windows backslashes). This script fails on Linux. I removed "call" , changed the backslashes to forward slashes and ran test.dist on Linux to verify my fix. Below is the diff and attached is the updated file. I do not have commit access - can a committer please review this change, and submit it? Thank you! - Joe Pemberton ----------------------------- beehive/trunk/test/testDistro.sh ------------------------------------------- [EMAIL PROTECTED] test]$ svn diff testDistro.sh Index: testDistro.sh =================================================================== --- testDistro.sh (revision 125683) +++ testDistro.sh (working copy) @@ -6,7 +6,7 @@ env # Populate the petstoreWeb with the Beehive/NetUI webapp runtime -call ant -Dwebapp.dir=$CWD\samples\petstoreWeb -f ant\webappRuntimeCore.xml deploy.beehive.webapp.runtime +ant -Dwebapp.dir=$PWD/samples/petstoreWeb -f ant/webappRuntimeCore.xml deploy.beehive.webapp.runtime # Build the petstoreWeb -call ant -Dwebapp.dir=$CWD\samples\petstoreWeb -f ant\buildWebapp.xml build +ant -Dwebapp.dir=$PWD/samples/petstoreWeb -f ant/buildWebapp.xml build
