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
cargo::print_warning("Building against ESP-IDF `master` is not officially supported, because it is considered bleeding edge and might get backwards-incompatible changes.");
309
309
}elseif curr_branch.starts_with("release/v"){
310
310
cargo::print_warning(format_args!(
311
-
"Building against ESP-IDF branch `{}` is not officially supported, because `release/vX.Y.Z` branches do not have a stable ESP-IDF version.",
312
-
curr_branch
311
+
"Building against ESP-IDF branch `{curr_branch}` is not officially supported, because `release/vX.Y.Z` branches do not have a stable ESP-IDF version.",
313
312
));
314
313
}elseif !curr_branch.starts_with("v"){
315
314
cargo::print_warning(format_args!(
316
-
"Building against ESP-IDF branch `{}` is not officially supported, because it does not follow the `vX.Y.Z` ESP-IDF release tag naming convention.",
317
-
curr_branch
315
+
"Building against ESP-IDF branch `{curr_branch}` is not officially supported, because it does not follow the `vX.Y.Z` ESP-IDF release tag naming convention.",
0 commit comments