You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Expand the default paths for tools on different platforms.
var home = Environment.ExpandEnvironmentVariables("%HOME%");
if(System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
home = Environment.ExpandEnvironmentVariables("%USERPROFILE%");
}
var process = new Process()
{
StartInfo = new ProcessStartInfo()
{
WorkingDirectory = $"./{functionId}",
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false,
CreateNoWindow = true,
FileName=$"{home}/.dotnet/tools/hypar", // Use the full expanded path to your tool.
Arguments="init"
}
};
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: