Skip to content

Commit

Permalink
feat(cli): Support pet name paths for store command
Browse files Browse the repository at this point in the history
  • Loading branch information
rekmarks committed May 15, 2024
1 parent d54402d commit 33c70b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/endo.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import url from 'url';

import { Command } from 'commander';
import { prompt } from './prompt.js';
import { parsePetNamePath } from './pet-name.js';

const packageDescriptorPath = url.fileURLToPath(
new URL('../package.json', import.meta.url),
Expand Down Expand Up @@ -370,7 +371,7 @@ export const main = async rawArgs => {
storeJson,
storeJsonStdin,
storeBigInt,
name,
name: parsePetNamePath(name),
agentNames,
});
});
Expand Down

0 comments on commit 33c70b3

Please sign in to comment.