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
let binding = git_semver_tags!("--package","bar-project").err().unwrap();
211
211
let output = binding.as_output().unwrap().to_owned();
212
+
let suffix = ifcfg!(windows){".exe"}else{""};
212
213
assert_eq!(
213
214
String::from_utf8(output.stderr)?,
214
-
"error: The following required arguments were not provided:\n --lerna\n\nUsage: git-semver-tags --lerna --package <package>\n\nFor more information try \'--help\'\n",
215
+
format!("error: The following required arguments were not provided:\n --lerna\n\nUsage: git-semver-tags{suffix} --lerna --package <package>\n\nFor more information try \'--help\'\n"),
215
216
"should not allow package filter without lernaTags=true"
0 commit comments