Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No spaces in path to fbuild.bff allowed #38

Open
meiwen333 opened this issue Apr 18, 2019 · 0 comments
Open

No spaces in path to fbuild.bff allowed #38

meiwen333 opened this issue Apr 18, 2019 · 0 comments

Comments

@meiwen333
Copy link

When I used FastBuild I got an error: D:\Program(1,1): FASTBuild Error #1015 - Unknown Function.
After a while of investigating the error I found it. It is in the function:
ExecuteBffFile

this line of code:
string FBCommandLine = string.Format("-monitor -summary {0} {1} -ide -clean -config {2}", distArgument, cacheArgument, BffFilePath);

In my case the folder in BffFilePath contained spaces and since the path is not in quitation marks the path can never be found. Just replace the line with this code:
string FBCommandLine = string.Format("-monitor -summary {0} {1} -ide -clean -config "{2}"", distArgument, cacheArgument, BffFilePath);

Cheers Pascal

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant