Skip to content

Commit d1bc50d

Browse files
committed
Add deprecation warning for 'quarto install chromium'
1 parent fcdc458 commit d1bc50d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/tools/tools.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@ export function checkToolRequirement(name: string) {
108108
);
109109
return true;
110110
} else {
111+
if (name.toLowerCase() === "chromium") {
112+
warning(
113+
'"quarto install chromium" is deprecated and will be removed in Quarto 1.10. ' +
114+
'Use "quarto install chrome-headless-shell" instead.',
115+
);
116+
}
111117
return true;
112118
}
113119
}

0 commit comments

Comments
 (0)