Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/command/use/commands/binder/binder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export const useBinderCommand = new Command()
info(
"\nNo files which provide dependencies were discovered. If you continue, no dependencies will be restored when running this project with Binder.\n\nLearn more at:\nhttps://www.quarto.org/docs/prerelease/1.4/binder.html#dependencies\n",
);
const proceed = await Confirm.prompt({
const proceed = !options.prompt || await Confirm.prompt({
message: "Do you want to continue?",
default: true,
});
Expand Down