We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2723152 commit 3ffad0bCopy full SHA for 3ffad0b
src/tools/tools-console.ts
@@ -149,6 +149,14 @@ export async function updateOrInstallTool(
149
prompt?: boolean,
150
updatePath?: boolean,
151
) {
152
+ // Deprecation warning for chromium
153
+ if (tool.toLowerCase() === "chromium" && action === "update") {
154
+ warning(
155
+ '"quarto update chromium" is deprecated and will be removed in Quarto 1.10. ' +
156
+ 'Use "quarto install chrome-headless-shell" instead.',
157
+ );
158
+ }
159
+
160
const summary = await toolSummary(tool);
161
162
if (action === "update") {
0 commit comments