guchenbo / simple-build-tool

Automatically exported from code.google.com/p/simple-build-tool
Other
0 stars 0 forks source link

sbt.Process apply splits path to command having spaces #150

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
For example android-plugin behaves badly with android sdk installed under 
c:\Program Files\. When plugin executes aapt task, path to the command to 
execute gets splitted and it results in: [error] ERROR: input directory 'Files' 
does not exist.

sbt: 0.7.4
Operating system: Windows 7

Original issue reported on code.google.com by janne.m...@evident.fi on 1 Mar 2011 at 1:04

GoogleCodeExporter commented 9 years ago
This is as designed and is consistent with Java's Runtime.exec.  The android 
plugin should use the variant that uses List[String].

Original comment by dmhar...@gmail.com on 6 Mar 2011 at 9:20