我正在尝试使用以下shell脚本运行pig脚本:
[HttpGet("logout-confirm")]
public async Task LogoutConfirm()
{
foreach (var cookie in Request.Cookies.Keys)
{
Response.Cookies.Delete(cookie);
}
HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
await
HttpContext.SignOutAsync(OpenIdConnectDefaults.AuthenticationScheme);
}
我遇到错误,因为默认猪版本是0.11.1而我的脚本使用了一些与此版本不兼容的命令。
如何在我的shell脚本中提供新的pig版本?
答案 0 :(得分:0)
假设您的设置中安装了更新的猪版本,请确保您的PIG_HOME环境有价值指向正确的版本。