Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/constants/help.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const CHANGES_REJECT_DESCRIPTION = 'Reject a change.';

export const SNAPSHOT_UPLOAD_DESCRIPTION = 'Upload a snapshot from offline files.';

export const OPTION_KEEP_STAGED = `${yellow('-k, --keep-staged')} Keep staged assets in memory after applying the change.`;
export const OPTION_KEEP_STAGED = `${yellow('-k, --keep-staged')} Keep proposed staged assets in memory after applying the change.`;
export const OPTION_HASH = `${yellow('--hash')} The expected hash of all included changes (for verification).`;
export const OPTION_HELP = `${yellow('-h, --help')} Output usage information.`;
export const OPTION_MODE = `${yellow('-m, --mode')} Choose which environment to use (production, staging, development). Defaults to production if omitted.`;
Expand Down
2 changes: 1 addition & 1 deletion src/services/changes/changes.apply.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const executeApplyChanges = async ({
spinner.text = 'Applying update...';
break;
case ApplyProposalProgressStep.ClearingProposalAssets:
spinner.text = 'Clearing staged assets...';
spinner.text = 'Clearing proposed staged assets...';
break;
case ApplyProposalProgressStep.PostApply:
spinner.text = 'Reloading...';
Expand Down
2 changes: 1 addition & 1 deletion src/services/changes/changes.clear.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const clearProposalStagedAssets = async ({

console.log('');

const spinner = ora('Deleting staged assets...').start();
const spinner = ora('Deleting proposed staged assets...').start();

try {
const {satellite} = await assertConfigAndLoadSatelliteContext();
Expand Down
2 changes: 1 addition & 1 deletion src/services/changes/changes.reject.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const executeRejectChanges = async ({
spinner.text = 'Rejecting...';
break;
case RejectProposalProgressStep.ClearingProposalAssets:
spinner.text = 'Clearing staged assets...';
spinner.text = 'Clearing proposed staged assets...';
break;
case RejectProposalProgressStep.PostReject:
spinner.text = 'Reloading...';
Expand Down
Loading