在 Powershell 中执行 if else 条件时出错
我正在尝试执行 if & else 代码但无法通过条件
{
if(($ENV_TYPE = 'Dev') && ($REGION_CODE = 'eus2'))
{
}
else
{
}
}
env_type
和 region_code
值均从 env 变量获取
我收到此错误:
标记“&&”在此版本中不是有效的语句分隔符。
I am trying to execute the if & else code but unable to pass through the condition
{
if(($ENV_TYPE = 'Dev') && ($REGION_CODE = 'eus2'))
{
}
else
{
}
}
Both the env_type
and region_code
values are getting from env variables
I get this error:
The token '&&' is not a valid statement separator in this version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)