Skip to content

Commit

Permalink
make question more general
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmgdr committed Feb 22, 2024
1 parent 7ee1bb8 commit 646d355
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/cli/src/hooks/postrun/feedback.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Hook, ux } from '@oclif/core'

const hook: Hook<'postrun'> = async function (options) {
ux.info(`Thanks for using the celocli!
We want to know which commands are most useful to the community.
Is '${options.Command.id}' a command you use often?
Let us know at https://github.com/celo-org/developer-tooling/discussions/92
const hook: Hook<'postrun'> = async function () {
ux.info(`
Thanks for using the celocli! We are interested in your feedback.
Let us know at https://github.com/celo-org/developer-tooling/discussions/92
`)
}

Expand Down

0 comments on commit 646d355

Please sign in to comment.