We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
On Mac: Azure Function Core tools is (most likely) installed via Brew.
Therefore the GetFunctionCoreTools will fail on finding the core tools in node modules (shown below):
System.IO.FileNotFoundException : Azure Function Core Tools not found at /usr/local/lib/node_modules/azure-functions-core-tools/bin/func.
System.IO.FileNotFoundException : Azure Function Core Tools not found at /usr/local/lib/node_modules/azure-functions-core-tools/bin/func
We should also check brew for Mac OS development so that it can properly find the function core tools path and not have to hardcode the path.
Workaround:
GetFunctionsCoreToolsPath
where func
The text was updated successfully, but these errors were encountered:
Fixed here: #533
Sorry, something went wrong.
No branches or pull requests
On Mac: Azure Function Core tools is (most likely) installed via Brew.
Therefore the GetFunctionCoreTools will fail on finding the core tools in node modules (shown below):
System.IO.FileNotFoundException : Azure Function Core Tools not found at /usr/local/lib/node_modules/azure-functions-core-tools/bin/func
.We should also check brew for Mac OS development so that it can properly find the function core tools path and not have to hardcode the path.
Workaround:
GetFunctionsCoreToolsPath
and set this line to where the location of func is (usewhere func
in the terminal to find the location).The text was updated successfully, but these errors were encountered: