Skip to content

Commit

Permalink
Changes as per feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
yolih committed Oct 15, 2024
1 parent 87ec347 commit 2c54dd3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/bin/vip-import-sql-status.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const examples = [
{
usage: 'vip @example-app.develop import sql status',
description:
'Check the status of the most recent SQL database file import to the develop environment of the "example-app" application.\n' +
'Check the status of the most recent SQL database import to the develop environment of the "example-app" application.\n' +
' * If the import is still in progress, the command will poll until the import is complete.',
},
];
Expand Down
6 changes: 3 additions & 3 deletions src/bin/vip-import-sql.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ const examples = [
{
usage: 'vip @example-app.develop import sql file.sql',
description:
'Import the local SQL database file "file.sql" to the develop environment of the "example-app" application.',
'Import the local SQL database backup file "file.sql" to the develop environment of the "example-app" application.',
},
// `search-replace` flag
{
Expand Down Expand Up @@ -227,7 +227,7 @@ const examples = [
{
usage: 'vip @example-app.develop import sql status',
description:
'Check the status of the most recent SQL database file import to the develop environment of the "example-app" application.\n' +
'Check the status of the most recent SQL database import to the develop environment of the "example-app" application.\n' +
' * This will continue to poll until the import is complete.',
},
];
Expand Down Expand Up @@ -389,7 +389,7 @@ void command( {
module: 'import-sql',
usage,
} )
.command( 'status', 'Check the status of a SQL database file import currently in progress.' )
.command( 'status', 'Check the status of a SQL database import currently in progress.' )
.option(
'skip-validate',
'Do not perform file validation prior to import. If the file contains unsupported entries, the import is likely to fail.'
Expand Down

0 comments on commit 2c54dd3

Please sign in to comment.