Skip to content

Commit 838343f

Browse files
color updates
1 parent 07e62d6 commit 838343f

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/cli/src/commands/pg/pull.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ export default class Pull extends Command {
3232
* a fully qualified URL to a local PostgreSQL server => TARGET must not exist and will be created
3333
* a fully qualified URL to a remote PostgreSQL server => TARGET must exist and be empty
3434
35-
To delete a local database run ${color.command('dropdb TARGET')}.
36-
To create an empty remote database, run ${color.command('createdb')} with connection command-line options (run ${color.command('createdb --help')} for details).
35+
To delete a local database run ${color.code('dropdb TARGET')}.
36+
To create an empty remote database, run ${color.code('createdb')} with connection command-line options (run ${color.code('createdb --help')} for details).
3737
`
3838

3939
static examples = [heredoc`
4040
# pull Heroku DB named postgresql-swimmingly-100 into local DB mylocaldb that must not exist
41-
$ heroku pg:pull postgresql-swimmingly-100 mylocaldb --app sushi
41+
${color.command('heroku pg:pull postgresql-swimmingly-100 mylocaldb --app sushi')}
4242
`, heredoc`
4343
# pull Heroku DB named postgresql-swimmingly-100 into empty remote DB at postgres://myhost/mydb
44-
$ heroku pg:pull postgresql-swimmingly-100 postgres://myhost/mydb --app sushi
44+
${color.command('heroku pg:pull postgresql-swimmingly-100 postgres://myhost/mydb --app sushi')}
4545
`]
4646

4747
static flags = {

packages/cli/src/commands/pg/push.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default class Push extends Command {
2626
push local or remote into Heroku database
2727
Push from SOURCE into TARGET. TARGET must be empty.
2828
29-
To empty a Heroku database for push run ${color.command('heroku pg:reset')}
29+
To empty a Heroku database for push run ${color.code('heroku pg:reset')}
3030
3131
SOURCE must be either the name of a database existing on your localhost or the
3232
fully qualified URL of a remote database.

0 commit comments

Comments
 (0)