delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2007/11/22/13:12:16

X-Recipient: archive-cygwin AT delorie DOT com
X-Spam-Check-By: sourceware.org
Date: Thu, 22 Nov 2007 13:11:52 -0500 (EST)
From: Igor Peshansky <pechtcha AT cs DOT nyu DOT edu>
Reply-To: cygwin AT cygwin DOT com
To: Nicolai Kamenzky <kamenzky AT inf DOT fu-berlin DOT de>
cc: cygwin AT cygwin DOT com
Subject: Re: Running Cygwin bash from Ant script
In-Reply-To: <4A00B393-DD8B-403D-99BA-F90F9985AB1C@inf.fu-berlin.de>
Message-ID: <Pine.GSO.4.63.0711221309400.14082@access1.cims.nyu.edu>
References: <4A00B393-DD8B-403D-99BA-F90F9985AB1C AT inf DOT fu-berlin DOT de>
MIME-Version: 1.0
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
Delivered-To: mailing list cygwin AT cygwin DOT com

On Wed, 14 Nov 2007, Nicolai Kamenzky wrote:

> Hi folks!
>
> In my Ant script I have a target which should
> 1. Start the Cygwin bash,
> 2. Change the current directory, and
> 3. Execute a command.
>
> I have done this previously using the windows console,
> but now I want to do the same with the Cygwin bash.
>
> My Ant target looked like this:
> <project name="xyz" basedir=".">
> 	<target name="build">
> 		<exec dir="." executable="cmd.exe">
> 			<arg line="/c make"/>
> 		</exec>
> 	</target>
> </project>
>
> I tried this, but it didn't work:
> <project name="xyz" basedir=".">
> 	<target name="build">
> 		<exec dir="." executable="C:\Program Files\cygwin\bin\bash">
> 			<arg line=" --login -i -c cd /cygdrive/c/someFolderToBeTheCurrentDir/; make"/>
> 		</exec>
> 	</target>
> </project>
>
> Any ideas?

This isn't really Cygwin-specific -- you'd have the same problem with ant
and bash on Linux.  Don't use "arg line", use something like

		<exec dir="." executable="C:\Program Files\cygwin\bin\bash">
			<arg value="--login"/>
			<arg value="-i"/>
			<arg value="-c"/>
			<arg value="cd /cygdrive/c/someFolderToBeTheCurrentDir/; make"/>
		</exec>

HTH,
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_	    pechtcha AT cs DOT nyu DOT edu | igor AT watson DOT ibm DOT com
ZZZzz /,`.-'`'    -.  ;-;;,_		Igor Peshansky, Ph.D. (name changed!)
     |,4-  ) )-,_. ,\ (  `'-'		old name: Igor Pechtchanski
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

Belief can be manipulated.  Only knowledge is dangerous.  -- Frank Herbert

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019