diff --git a/README.md b/README.md index 6509bc9..60606f0 100644 --- a/README.md +++ b/README.md @@ -509,7 +509,7 @@ DESCRIPTION EXAMPLES $ scrollsdk setup configs - $ scrollsdk setup configs --image-tag v0.0.25 + $ scrollsdk setup configs --image-tag gen-configs-2eba3d2c418b16f4a66d9baadeb1c1bafdca81b1 $ scrollsdk setup configs --configs-dir custom-configs ``` diff --git a/src/commands/setup/configs.ts b/src/commands/setup/configs.ts index 9fbcc15..0e6ec5c 100644 --- a/src/commands/setup/configs.ts +++ b/src/commands/setup/configs.ts @@ -14,7 +14,7 @@ export default class SetupConfigs extends Command { static override examples = [ '<%= config.bin %> <%= command.id %>', - '<%= config.bin %> <%= command.id %> --image-tag v0.0.25', + '<%= config.bin %> <%= command.id %> --image-tag gen-configs-2eba3d2c418b16f4a66d9baadeb1c1bafdca81b1', '<%= config.bin %> <%= command.id %> --configs-dir custom-configs', ] @@ -427,7 +427,7 @@ export default class SetupConfigs extends Command { } private async getDockerImageTag(providedTag: string | undefined): Promise { - const defaultTag = 'gen-configs-v0.0.25'; + const defaultTag = 'gen-configs-2eba3d2c418b16f4a66d9baadeb1c1bafdca81b1'; if (!providedTag) { return defaultTag;