Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-build-dev] build.xml "refresh" target problems.

	<target name="refresh" depends="init" if="eclipse.running"
description="Refresh this folder.">
		<echo message="before eclipse.convertPath"/>
		<eclipse.convertPath
fileSystemPath="D:/ide/pde/A_test_pde/plugins/test.pde.plugin"
property="resourcePath"/>
		<echo message="resourcePath = $resourcePath"/>
		<eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>		
	</target>

Is this target used by anything?

Can anyone actually run this on the command line?
It fails for me with
...build.xml:161: The path
D:\ide\pde\A_test_pde\plugins\test.pde.plugin does not match any
existing project.

I want to replace the fully qualified path name with "${basedir}" since this is
    [echo] basedir = D:\ide\pde\A_test_pde\plugins\test.pde.plugin

Cheers,
Barrie


Back to the top