-
Notifications
You must be signed in to change notification settings - Fork 14
Description
We've got a C# project where the .less compilation isn't working for one of our developers (set as a build action on the .less file and working for other developers using the same project).
From what I can tell the problem is that his Windows username contains a space, so his checked out less file is at C:\Users\First Last\Documents\GitHub\Project\Project\Website\Content\less\project.less
The output he gets when building includes:
lessc: ENOENT, open 'C:\Users\First Last\Documents\GitHub\Project\Project\Website\Content\less\Last\Documents\GitHub\Project\Project\Website\Content\css\project.css.map'
My initial thought is that the "build from" parameter is not being quoted / escaped properly before being passed to the build script, but I'm not sure where that happens.