From 18c5964a57cb1dd462818bd3883e83ec430287a2 Mon Sep 17 00:00:00 2001 From: Sameer Kumar Subudhi Date: Wed, 25 Oct 2023 11:53:02 +0200 Subject: [PATCH] :pencil: Update flag description --- docs/migration.md | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/migration.md b/docs/migration.md index 001dff13..563b166c 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -96,7 +96,7 @@ OPTIONS --auto-start-lisk-core-v4 Start Lisk Core v4 automatically. Defaults to false. When using this flag, kindly open another terminal window to stop Lisk Core v3.1.x for when the migrator prompts. - --snapshot-path=snapshot-path Path to the state snapshot to run the migration offline. It could point either to a directory or a tarball (tar.gz). + --snapshot-path=snapshot-path Local filepath to the state snapshot to run the migration offline. It could point either to a directory or a tarball (tar.gz). --snapshot-url=snapshot-url URL to download the state snapshot from. Use to run the migration offline. URL must end with tar.gz. diff --git a/src/index.ts b/src/index.ts index 633ce747..29088bce 100644 --- a/src/index.ts +++ b/src/index.ts @@ -127,7 +127,7 @@ class LiskMigrator extends Command { required: false, env: 'SNAPSHOT_PATH', description: - 'Path to the state snapshot to run the migration offline. It could point either to a directory or a tarball (tar.gz).', + 'Local filepath to the state snapshot to run the migration offline. It could point either to a directory or a tarball (tar.gz).', dependsOn: ['network'], exclusive: ['snapshot-url'], }),