Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianGonz97 committed Nov 14, 2024
1 parent c6c816d commit 391558f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/clack-prompts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ export const note = (message = '', title = ''): void => buildBox(message, title,
export const box = (message = '', title = ''): void => buildBox(message, title, false);
export const taskLog = (title: string) => {
const BAR = color.dim(S_BAR);
const ACTIVE = color.green(S_STEP_ACTIVE);
const ACTIVE = color.green(S_STEP_SUBMIT);
const SUCCESS = color.green(S_SUCCESS);
const ERROR = color.red(S_ERROR);

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/utils/package-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export async function packageManagerPrompt(cwd: string): Promise<AgentName | und
}

export async function installDependencies(agent: AgentName, cwd: string): Promise<void> {
const box = p.taskLog(`Installing dependencies with ${agent}`);
const box = p.taskLog(`Installing dependencies with ${agent}...`);

try {
const { command, args } = constructCommand(COMMANDS[agent].install, [])!;
Expand Down

0 comments on commit 391558f

Please sign in to comment.