This commit is contained in:
Reinier Criel 2025-12-16 14:53:30 +01:00
parent 037a83e1ff
commit a47ea153da
2 changed files with 1 additions and 3 deletions

View file

@ -130,8 +130,7 @@ function hasFlagArg(args, flagName) {
* @returns {void}
*/
export function checkDeprecatedPythonFlag(args) {
if (!Array.isArray(args)) return;
if (args.includes("--include-python")) {
if (hasFlagArg(args, "--include-python")) {
ui.writeWarning(
"--include-python is deprecated and ignored. Python tooling is included by default."
);