user1464883
user1464883

Reputation:

Execute failed: java.io.IOException: Cannot run program even changed the jre to JDK?

i donot know the base of problem even i searched that it could be fixed with jdk installed in eclipse but same problem, any help!!

BUILD FAILED E:\GAP\gapvis\build.xml:32: The following error occurred while executing this line: E:\GAP\gapvis\build.xml:108: The following error occurred while executing this line: E:\GAP\gapvis\build.xml:172: The following error occurred while executing this line: E:\GAP\gapvis\build.xml:176: Execute failed: java.io.IOException: Cannot run program "lessc.cmd": CreateProcess error=2, Le fichier spécifié est introuvable

Upvotes: 0

Views: 4359

Answers (2)

wemu
wemu

Reputation: 8160

you need to add lessc.cmd to your path since it wants to execute it. If it is available on the system but eclipse ignores it you need to add that path into eclipse so it knows where it can execute it.

plan b would be to try an absolute path for lessc.cmd in your build.xml file (line 176)

Upvotes: 0

Kurt Du Bois
Kurt Du Bois

Reputation: 7665

Le fichier spécifié est introuvable means the lessc.cmd file cannot be found. Are you sure you put it in the same directory as the build.xml?

Upvotes: 1

Related Questions