Skip to content

Commit

Permalink
update README after rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotCamblor committed Oct 6, 2023
1 parent 053d8d8 commit 2fa99cf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ $ npm install -g @devcycle/cli
$ dvc COMMAND
running command...
$ dvc (--version)
@devcycle/cli/5.11.1 linux-x64 node-v18.16.0
@devcycle/cli/5.11.1 darwin-x64 node-v16.20.0
$ dvc --help [COMMAND]
USAGE
$ dvc COMMAND
Expand Down
2 changes: 1 addition & 1 deletion oclif.manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.11.0",
"version": "5.11.1",
"commands": {
"authCommand": {
"id": "authCommand",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/variables/create.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ describe('variables create', () => {
(ctx) => {
expect(ctx.stdout).to.contain(
// eslint-disable-next-line max-len
'The variable was associated to the existing feature spam. Use "dvc feature get spam" to see its details'
'The variable was associated to the existing feature spam. Use "dvc features get --keys=spam" to see its details'
)
})

Expand Down
6 changes: 3 additions & 3 deletions src/commands/variables/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ export default class CreateVariable extends CreateCommand {
)
await variableListOptions.promptVariationValues(params as Variable)
await updateFeature(this.authToken, this.projectKey, feature.key, feature)
const message = `The variable was associated to the existing feature ${feature.key}.` +
`Use "dvc feature get ${feature.key}" to see its details`
const message = `The variable was associated to the existing feature ${feature.key}. ` +
`Use "dvc features get --keys=${feature.key}" to see its details`
this.writer.successMessage(message)
} else {
const result = await createVariable(this.authToken, this.projectKey, params)
Expand All @@ -96,7 +96,7 @@ export default class CreateVariable extends CreateCommand {
}
await updateFeature(this.authToken, this.projectKey, feature.key, feature)
const message = `The variable was associated to the existing feature ${feature.key}. ` +
`Use "dvc feature get ${feature.key}" to see its details.`
`Use "dvc features get --keys=${feature.key}" to see its details.`
this.writer.showRawResults(message)
} else {
const result = await createVariable(this.authToken, this.projectKey, params)
Expand Down

0 comments on commit 2fa99cf

Please sign in to comment.